使用 PHP 进行 ffmpeg 的 .mov 文件到 .flv 文件转换问题
有没有可能的方法将 .mov 文件转换为 .flv 文件 ffmpeg 使用 PHP 的转换问题。如果是的话,请告诉我该怎么做?
预先感谢,
费罗
Is there any possible way to convert .mov file to .flv file conversion issue for ffmpeg using PHP. If yes, kindly let me know how to do?
Thanks in advance,
Fero
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我同意 Kemo 的观点,尽管遵循 Stackoverflow 的约定,我将提供给定链接提供的关键位:
我经常使用 ffmpeg 进行转码,而且我从来不费心给出所有这些标志,所以你可能会发现我的典型用法对你来说也足够好:
这应该只是改变容器格式,并尝试使其他所有内容尽可能接近。我刚刚这样做了,它似乎工作正常,尽管我在将我的 flv 上传到某个地方时遇到了问题,但这可能与 ffmpeg 完全无关。有什么建议吗?
I agree with Kemo, though following the conventions of Stackoverflow, I'll offer the key bit provided by the link given:
I often transcode with ffmpeg and I don't ever bother to give all those flags, so you may find my typical use works well enough for you too:
That's supposed to just change container formats and it tries to keep everything else as close as possible. I just did that and it seemed to work fine, though I'm uploading my flv somewhere it I'm having an issue, but that's probably totally unrelated to ffmpeg. Any tips?