我在使用ffserver进行流式处理时遇到问题。在我启动ffserver和桌面捕获之后,一切看起来都很好。
然后打开浏览器并访问输出(http://localhost:8090/test1.mpeg)。它
播放6-7秒,然后停止,我必须刷新页面以使其再次工作。有人知道为什么会这样吗?我怎么才能纠正?
这是我的ffserver.conf

HTTPPort 8090
HTTPBindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 40000
CustomLog -

<Feed feed1.ffm>
  File /tmp/feed1.ffm
  FileMaxSize 10000K
  ACL allow 127.0.0.1
  ACL allow localhost
  ACL allow 192.168.0.0 192.168.255.255
</Feed>

<Stream test1.mpeg>
  Feed feed1.ffm
  Format mpeg
  AudioBitRate 32
  AudioChannels 1
  AudioSampleRate 44100
  VideoBitRate 300
  VideoFrameRate 30
  VideoSize 1280x1024
  VideoCodec mpeg1video
  AudioCodec libvorbis
  NoAudio
  StartSendOnKey
</Stream>

我的桌面捕获:
ffmpeg -f x11grab -r 40 -s 800x600 -framerate 50  -i :0.0+4,529 -map 0 -codec:v mpeg1video -codec:a libvorbis http://localhost:8090/feed1.ffm

最佳答案

问题是,视频比特率太低。我把它改成了3000,现在运行起来没有问题。
现在,我的ffserver.conf如下所示:

HTTPPort 8090
HTTPBindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 40000
CustomLog -

<Feed feed1.ffm>
   File /tmp/feed1.ffm
   FileMaxSize 10000K
   ACL allow 127.0.0.1
   ACL allow localhost
   ACL allow 192.168.0.0 192.168.255.255
</Feed>

<Stream test1.mpeg>
   Feed feed1.ffm
   Format mpeg
   AudioBitRate 50
   AudioChannels 1
   AudioSampleRate 44100

   # Bitrate for the video stream
   VideoBitRate 3000

   VideoFrameRate 30
   VideoSize 1280x1024
   VideoCodec mpeg1video
   AudioCodec libvorbis
   NoAudio
   StartSendOnKey
</Stream>

07-26 02:09