I've been having the following problem for some days now...
I have a server which send me an url like rtsp://ip:port/
with an active streaming session.
The format is MJPEG and I have some metadata in each frame. So I need to extract data from the stream.
I know MJPEG is not supported on Android (so no Mediaplayer), but I found a way to play it in a videoView using Android ICS and MJPEG using AsyncTask and httpclient. But I have only rtsp url.
Details:
- I have only rtsp url, no http.
- httprequest doesn't work with rtsp urls.
The best thing would be a way to get an Mjpeginputstream (see link above) from rtsp urls, but I don't know how!