下载m3u8-ts视频再转换为mp4
作者:互联网
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
转换成功。
标签:视频,转换,ffmpeg,videos,m3u8,ts,mp4 来源: https://blog.csdn.net/u012515223/article/details/113844119