使用 PHP 进行 ffmpeg 的 .mov 文件到 .flv 文件转换问题

发布于 2024-08-14 15:57:24 字数 96 浏览 3 评论 0原文

有没有可能的方法将 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空宴 2024-08-21 15:57:24

我同意 Kemo 的观点,尽管遵循 Stackoverflow 的约定,我将提供给定链接提供的关键位:

ffmpeg -i <filename.mpg> -deinterlace -ar 44100 -r 25 -qmin 3 -qmax 6 <filename.flv>

我经常使用 ffmpeg 进行转码,而且我从来不费心给出所有这些标志,所以你可能会发现我的典型用法对你来说也足够好:

ffmpeg -i inputFile.mov outputFile.flv

这应该只是改变容器格式,并尝试使其他所有内容尽可能接近。我刚刚这样做了,它似乎工作正常,尽管我在将我的 flv 上传到某个地方时遇到了问题,但这可能与 ffmpeg 完全无关。有什么建议吗?

I agree with Kemo, though following the conventions of Stackoverflow, I'll offer the key bit provided by the link given:

ffmpeg -i <filename.mpg> -deinterlace -ar 44100 -r 25 -qmin 3 -qmax 6 <filename.flv>

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:

ffmpeg -i inputFile.mov outputFile.flv

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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文