この質問の前に、私が ffmpeg を初めて使用し、さらに ffserver を初めて使用するという事実を前置きしたいと思います。
私の人生では、このことを進めることはできません。私は得る:
"Too large number of skipped frames 882933314374 > 60000"
また、ffplayは私に与えますfirst frame is no keyframe
これが私のffserver.confファイルです
HTTPPort 8090
HTTPBindAddress 0.0.0.0
MaxHTTPConnections 1000
MaxClients 10
MaxBandwidth 2000000
NoDefaults
###############################################################################################
<Feed test.ffm>
File /tmp/test.ffm
FileMaxSize 10000M
ACL ALLOW localhost
</Feed>
<Stream status.html>
Format status
# Only allow local people to get the status
ACL allow localhost
</Stream>
<Stream test.avi>
Feed test.ffm
Format avi
ACL ALLOW localhost
ACL ALLOW 192.168.1.0
NoAudio
VideoSize 3840x2160
VideoFrameRate 30
Preroll 10
</Stream>
###############################################################################################
そして、これが私のffmpegコマンドです
ffmpeg -i smaller.avi http://localhost:8090/test.ffm
私は一日中このことと戦っており、ずっと狂ったようにグーグルで検索しています。私は何を間違っていますか?どんな助けも熱心に歓迎されます。