【tools】下载m3u8视频链接的方法

1、使用ffmpeg工具直接下载

官网下载

https://ffmpeg.org/download.html

 

 安装就是直接安装即可

ffmpeg -i [http://xxxxxxx/play.ts] -c copy test.mp4

 

 

 

2、使用python库之ffmpy3

安装

pip install ffmpy3

使用

import ffmpy3

from ffmpy3 import *


ff = ffmpy3.FFmpeg(
    global_options=[],
    inputs={'https://xxxxxx/xxxxxx.m3u8': None},
    outputs={'test1.mp4': ['-c', 'copy']}
)

ff.run()

 

 

3、使用python库之moviepy

安装

pip install moviepy

使用

from moviepy.editor import *
 
a = "D:\test1.mp4"
b = "D:\test2.mp4"
video1 = VideoFileClip(a)
video2 = VideoFileClip(b)
final_clip = concatenate_videoclips([video1,video2])
final_clip.to_videofile("D:\test3.mp4", fps=30, remove_temp=False)

 

 

参考链接:

https://blog.csdn.net/maum61/article/details/104301670

https://zhuanlan.zhihu.com/p/348586073

https://blog.csdn.net/wenxingchen/article/details/122966665

 

posted @ 2022-07-18 21:07  代码诠释的世界  阅读(1344)  评论(0编辑  收藏  举报