Page 1 of 1

Can I store an RTSP stream to disk iOS, yes or no?

Posted: 28 Jul 2016 19:56
by moyoteg
Felix! :D

Simple question:

Can I store an RTSP stream to disk iOS, yes or no?

you can even answer this question in binary ;)

Re: Can I store an RTSP stream to disk iOS, yes or no?

Posted: 05 Aug 2016 23:07
by moyoteg
Can frames be extracted and then put in an array and then make a video?

Re: Can I store an RTSP stream to disk iOS, yes or no?

Posted: 09 Aug 2016 11:36
by fkuehne
No, you can't easily dump RTSP streams with VLCKit on iOS.

Yes, you can extract frames and do whatever you want with them. "make a video" is not a feature included in VLCKit though.

Re: Can I store an RTSP stream to disk iOS, yes or no?

Posted: 09 Aug 2016 22:47
by moyoteg
Do you have an example on how to extract the frames?

Thanks in advance!!

Re: Can I store an RTSP stream to disk iOS, yes or no?

Posted: 10 Aug 2016 19:40
by fkuehne
See the VLCThumbnailer class in VLCKit, which uses the memory video output module of VLC to render frames in memory buffers. Basically, you want to play the stream that way to get access to the frames.

Therefore, you need to extend VLCKit to gain proper access to them and this would be a welcome addition! :)