I have a few IP cameras that stream 720 X264 video over rtsp. The streams are really unreliable when viewing on Android. They also fail if more then 2 connections are made.
I have a ubuntu server that I can use to connect and restream as mjpeg or something else. There are tons of different commands out there but they all seem to involve transcoding the video.
How can I simply restream the live rtsp feed as a mjpeg without doing anything to the video itself? Theres no audio so no worries there.
It seems that recently I did something similar. I have added following section to the /etc/ffserver.conf file:
After that started server with command:
and run streaming with command:
Tune the ip camera url for your purposes. Now you can access the mjpeg stream by accessing following address with your browser/player:
Works fine for me and hope it solves your problem.