使用downloadm3u8和ffmpeg下载m3u8格式视频

ffmpeg

brew install ffmpeg

ffmpeg -i https://video.demo.com/index.m3u8 "foo.mp4"

downloadm3u8

依赖ffmpeg

pip install downloadm3u8 

downloadm3u8 -o foo.mp4 https://video.demo.com/index.m3u8

或者下载完ts之后,使用ffmpeg合并视频

> ls
input.ts    
key.key     
index.m3u8


> ffmpeg -allowed_extensions ALL -protocol_whitelist "file,http,crypto,tcp" -i index.m3u8 -c copy out.mp4

发布了1488 篇原创文章 · 获赞 454 · 访问量 158万+

猜你喜欢

转载自blog.csdn.net/mouday/article/details/105458976
今日推荐