我想定期拍摄RTMP实时视频流的快照。我可以使用VLC看到rtmp视频流。这是rtmp url:
rtmp://antena3fms35livefs.fplive.net/antena3fms35live-live/stream-antena3_1我使用下面的命令来捕获快照,根据官方的FFmpeg站点here
ffmpeg -i rtmp://antena3fms35livefs.fplive.net/antena3fms35live-live/stream-antena3_1 -f image2 -vf fps=fps=1 out%d.png该命令产生以下输出:
ffmpeg version N-64667-gd595361 Copyright (c) 2000-2014 the FFmpeg developers
built on Jul 14 2014 22:09:48 with gcc 4.8.3 (GCC)
configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzl
libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amr
enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --ena
libavutil 52. 92.100 / 52. 92.100
libavcodec 55. 69.100 / 55. 69.100
libavformat 55. 47.100 / 55. 47.100
libavdevice 55. 13.102 / 55. 13.102
libavfilter 4. 10.100 / 4. 10.100
libswscale 2. 6.100 / 2. 6.100
libswresample 0. 19.100 / 0. 19.100
libpostproc 52. 3.100 / 52. 3.100
HandShake: client signature does not match!
Closing connection: NetStream.Play.StreamNotFound
rtmp://antena3fms35livefs.fplive.net/antena3fms35live-live/stream-antena3_1: Unknown error occurred我已经尝试了另一个rmtp流,但是我仍然得到了完全相同的错误。
有什么问题吗?谢谢!
发布于 2014-07-22 14:27:54
我刚试过你的命令,对我来说很好。也许是关于你的FFMPEG安装?我在Mac (tessus build)上使用2.4版本。
我知道在rtmp连接中使用了其他/更早的版本,这需要流URL后面的一些额外的选项。参见ffmpeg文档此处:ffmpeg documentation on librtmp
和这里的图书管理员文档:librtmp documentation
对于不受保护的活动流,您可以尝试引用流URL并在引号中添加“live=1”:
ffmpeg -i "rtmp://antena3fms35livefs.fplive.net/antena3fms35live-live/stream-antena3_1 live=1" -f image2 -vf fps=fps=1 out%d.pnghttps://stackoverflow.com/questions/24801673
复制相似问题