开发者

how can we join two mpg files using ffmpeg?

开发者 https://www.devze.com 2023-02-05 01:56 出处:网络
how can we join two mpg files using ffmpeg? i have tried cat file1.mpg file2.mpg > output.mpg But it shows cat is not a recognize开发者_如何转开发d internal or external command error. Please helpmpg

how can we join two mpg files using ffmpeg? i have tried cat file1.mpg file2.mpg > output.mpg But it shows cat is not a recognize开发者_如何转开发d internal or external command error. Please help


mpg container can be simply concatenated w/o any transcoding. which platform? if you're on windows (taking into account your error message), you need to use:

copy file1.mpg /b + file2.mpg /b output.mpg /b

/b indicates binary files

0

精彩评论

暂无评论...
验证码 换一张
取 消