FFmpeg 命令帮助和文档指针
我正在使用 FFmpeg 来完成我的 Android 项目之一。到目前为止,我已经能够成功地为 ARM 编译 FFmpeg。现在我的方法是编写一个JNI接口来使用FFmpeg播放视频。
我尝试执行命令 ./ffmpeg --help
来查看 FFmpeg 可用的选项,到目前为止我只能理解输入文件名可以通过 -i fileName< 提供/代码> 选项。
我一直在寻找有关 FFmpeg 命令以及如何播放视频/RTMP 流的在线教程/博客,但找不到合适的链接。
我想知道以下内容:
- 使用 FFMpeg 播放视频的命令是什么?
- 使用 FFMpeg 播放本地文件的命令是什么
- 使用 FFMpeg 播放 RTMP 流的命令是什么
- 使用 FFMpeg 播放视频的 Java / C 示例代码
- 是否可以从 ffplay.c 中提取一些代码片段code> 并编写自定义代码?
任何有关上述内容的帮助和/或任何指向相关链接的指示都将受到高度赞赏。
谢谢。
I was working with FFmpeg for one of my android project. So far, I have been able to successfully able to compile FFmpeg for ARM. Now my approach is to write a JNI interface for playing videos using FFmpeg.
I tried executing the command ./ffmpeg --help
to see the options available with FFmpeg, and so far I am only able to understand that the input filename can be provided with -i fileName
option.
I have been searching for online tutorials / blogs for FFmpeg commands, and how to play a video / RTMP stream, but couldn't find a suitable link.
I'd like to know the following:
- What is the command to play a video using FFMpeg?
- What is the command to play a local file using FFMpeg
- What is the command to play a RTMP stream using FFMpeg
- Java / C sample code to play video using FFMpeg
- Is it possible to extract some piece of code from
ffplay.c
and write a custom code?
Any help with the above and / or any pointers to relevant links is highly appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ffmpeg 命令是 FFmpeg 项目的一部分,“只是”编码器。听起来您正在寻找
ffplay
,可以在此处找到文档:ffmpeg.org /ffplay.html。请注意,FFmpeg 的构建还可以具有其他可执行二进制文件,例如ffserver
。您可能需要在运行./configure
时明确启用 ffplay祝你好运。我以前从未听说过有人使用 ffplay。我不认为这是在任何设备上播放视频的常见方式,更不用说手机了。
The
ffmpeg
command, part of FFmpeg project, is 'just' the encoder. It sounds like you are looking forffplay
, and the documentation can be found here: ffmpeg.org/ffplay.html. Note that a build of FFmpeg can also have other executable binaries, likeffserver
. You may need to explicately enable ffplay when running./configure
Good luck. I've never heard of anyone using ffplay before. I don't believe it is a common way to play videos an any device, let alone a mobile.