Ask Your Question

sios's profile - activity

2013-07-22 11:56:53 -0600 commented answer ios - rtsp

Are you saying that ffmpeg is not available with the ios version of opencv at all?

Thanks

2013-07-22 10:56:45 -0600 commented question ios - rtsp

Yes, I have the latest version (2.4.6). It's the only version I've used.

Thanks

2013-07-22 00:22:21 -0600 received badge  Editor (source)
2013-07-21 23:26:21 -0600 asked a question ios - rtsp

Any pointers on how to capture an rtsp stream under iOS? The example tutorial works great capturing from the built-in cameras, but any pointers on where to look to capture other streams?

Thanks

EDIT:

both

CvCapture *camera = cvCaptureFromFile("rtsp://184.72.239.149/vod/mp4:BigBuckBunny_115k.mov");

and

_videoCapture = new cv::VideoCapture;
_videoCapture->open("rtsp://184.72.239.149/vod/mp4:BigBuckBunny_115k.mov");

fail.

I can show that stream using ffmpeg.

Thanks again.

EDIT 2:

I'm wondering now if I have a version of opencv without ffmpeg compiled in, which I'm reading is required for opencv on ios to read streams. Any pointers on how I can test that opencv has ffmpeg?

Thanks again.