将 Quicktime 文件的文件夹连接在一起
我知道在我的 Linux 机器上我可以使用:
cat file1.mov file2.mv file3.mov > combined.mov
但在 OSX 中这似乎不起作用。仅合并 file1.mov。
OSX 有什么解决办法吗?
谢谢
I know on my linux box I can use:
cat file1.mov file2.mv file3.mov > combined.mov
But in OSX this doesn't seem to work. Only the file1.mov is combined.
Any work arounds for OSX?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 FFMPEG FAQ,您必须转换您的
.mov 文件转换为 MPEG 格式,然后才能以这种方式连接它们。
是的,您可以使用 FFMPEG 进行与 MPEG 之间的转换。 :-P
According to the FFMPEG FAQ, you have to convert your
.mov
files to MPEG format before you can concatenate them in that fashion.Yes, you can use FFMPEG to do the conversion, both to and from MPEG. :-P