With ffmpeg I am providing a feed to ffserver from an image repeatedly read. I use the following instruction
ffmpeg -v debug -loop 1 -f image2 -i http://IP_ADDRESS/image.jpg -c:v libx264 http://FFSERVER_IP_ADDRESS:8090/feed.ffm
In this way I can get the stream from the server but I need to rotate the resulting stream.
I tried with the -vf transpose=1 option in this way
ffmpeg -v debug -loop 1 -f image2 -i http://IP_ADDRESS/image.jpg -c:v libx264 -vf transpose=1 http://FFSERVER_IP_ADDRESS:8090/feed.ffm
but nothing happens.
my ffserver.conf
HTTPPort 8090
RTSPPort 7654
HTTPBindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 1000
CustomLog -
<Feed feed.ffm>
File path_to_file/feed.ffm
FileMaxSize 10000K
ACL allow 192.168.1.0 192.168.1.255
</Feed>
<Stream test.h264>
Feed feed.ffm
Format rtp
Noaudio
</Stream>
Suggestions?
thanks