如何使用ffmpeg进行转换和捕获

发布于 2025-01-06 10:51:43 字数 203 浏览 0 评论 0原文

我想上传一个视频。上传的视频将以 10% 和 50% 的时间长度捕获两个图像。 如果上传的视频不是flv,想转换为flv。 如何知道上传的视频是flv还是不是flv。 如何转换? 现在我使用 php 和 ffmpeg。 请有人回答我。我是 php、ffmpeg 和英语的初学者。 我在这个网站上发现了很多关于 ffmpeg 的问题。但我找不到需要的答案。 如果这个问题是重复的问题,请原谅我。

I want to upload a video.Uploaded video will be capture two images at 10% and 50% time length.
And if uploaded video is not flv, want to convert to flv.
How to know uploaded video is flv or not flv.
How to convert?
Now I am using php and ffmpeg.
Please someone answer me.I am beginner for php, ffmpeg and english language.
I founded many questions in this website about ffmpeg.But I can't found need answer.
If this question is duplicate question,forgive me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

帅哥哥的热头脑 2025-01-13 10:51:43

如何知道上传的视频是不是flv

您可以使用反引号(`)运算符并调用其中的file命令来检查它是否是flv文件

if(stripos(`file Hum-Hain-is-pal-yaha.flv`, "Macromedia Flash Video")!==false){
    // gotcha 
}

并根据本教程。您只需通过以下命令即可将任何视频转换为 .flv

 `ffmpeg -i $input_video_path {$ouput_video_path}.flv`

注意:反引号 (`) 运算符。

How to know uploaded video is flv or not flv

You can use backtick (`) operator and invoke file command there to check if its a flv file

if(stripos(`file Hum-Hain-is-pal-yaha.flv`, "Macromedia Flash Video")!==false){
    // gotcha 
}

And according to this tutorial. You can convert any video to .flv just by following command.

 `ffmpeg -i $input_video_path {$ouput_video_path}.flv`

Note: the backtick (`) operator.

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