如何使用ffmpeg进行转换和捕获
我想上传一个视频。上传的视频将以 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用反引号(`)运算符并调用其中的
file
命令来检查它是否是flv
文件并根据本教程。您只需通过以下命令即可将任何视频转换为
.flv
。注意:反引号 (`) 运算符。
You can use backtick (`) operator and invoke
file
command there to check if its aflv
fileAnd according to this tutorial. You can convert any video to
.flv
just by following command.Note: the backtick (`) operator.