Are there any class or snippet in PHP or C# (better in php if could be), to download video from an streaming source that uses RTSP protocol?
Thanks a lot in advance.
Best Regards.
Jose.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You will have to call out to an external program to do this. Check out
mplayer -dumpstreamand, if that fails,rtmpdump. Keep in mind that saving the stream will take a long time, so it’s almost certainly better done in an external process that spawns a number of worker. Your web application can then communicate with the process to pass jobs and results back and forth.