随身笔记
随身笔记

ffmpeg合并多个ts视频文件并输出mp4 、且mp4转mp3

FFmpeg合并多个ts视频文件

方法一,

新建file.txt文档

file 'F:\Release\StreamMediaServer\html\hd\34020000001310000701\34020000001310000701_live-16.ts'
file 'F:\Release\StreamMediaServer\html\hd\34020000001310000701\34020000001310000701_live-17.ts'

并执行

ffmpeg.exe -f concat -safe 0 -i file.txt -c copy out.mp4

 

方法二

ffmpeg -i "concat:34020000001310000701_live-16.ts|34020000001310000701_live-17.ts|" -c copy output.mp4

 

ts转mp3转mp4

ffmpeg -i test.ts -acodec copy -vcodec copy -f mp4 test.mp4
ffmpeg -i out.mp4 -b:a 128k file.mp3

 

https://ffmpeg.org/download.html

 

 

没有标签
首页      前端资源      wordpress教程      ffmpeg合并多个ts视频文件并输出mp4 、且mp4转mp3

随身笔记

ffmpeg合并多个ts视频文件并输出mp4 、且mp4转mp3
FFmpeg合并多个ts视频文件 方法一, 新建file.txt文档 file 'F:\Release\StreamMediaServer\html\hd\34020000001310000701\34020000001310000701_live-16.ts' file 'F:\Release\S…
扫描二维码继续阅读
2022-03-19