Chrome工具:
- m3u8 online video extractor
- HLS Downloader
从浏览器 -> 检查 -> network中,提取m3u8的视频链接,下载ts视频。
复制link address,如
https://xxx.com/videos/5eba548e348b2c44a18ab508/index2.ts
转换为m3u8格式,如
https://xxx.com/videos/5eba548e348b2c44a18ab508/index.m3u8
使用m3u8 online video extractor下载视频:
在macOS中安装ffmpeg,转换视频:
brew install ffmpeg
ffmpeg -y -i x.ts -c:v libx264 -c:a copy -bsf:a aac_adtstoasc x.mp4
转换成功。