Lop*_*per 11 avi video-editing video-encoding
我想将多个带有 .mov 和 .avi 扩展名的影片剪辑合并到一个文件中。市场上有没有好的并且能够执行的免费软件?
最好应该在没有任何质量损失的情况下工作。
bla*_*lah 20
试试mencoder或者ffmpeg,都是免费的,都不错。
mencoder -oac copy -ovc copy -o output.avi input1.avi input2.avi
Run Code Online (Sandbox Code Playgroud)
来自关于如何连接(加入、合并)媒体文件的 FFmpeg Wiki 文章:
创建一个文件“mylist.txt”,其中包含您要按以下形式连接的所有文件(以破折号开头的行将被忽略):
Run Code Online (Sandbox Code Playgroud)# this is a comment file '/path/to/file1' file '/path/to/file2' file '/path/to/file3'请注意,这些可以是相对或绝对路径。然后,您可以使用以下方法对文件进行编码:
Run Code Online (Sandbox Code Playgroud)ffmpeg -f concat -i mylist.txt -c copy output