I want to record flash stream using php. Do u guys know how to do that? I want script to record for example youtube file playing. I have VPS so it can use some software.
Any ideas?
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 can make script that simply downloads and saves the stream data in the file, but in that case, you must disable the 30 seconds limit for that file.
There can be made scripts that call themselves in infinite loop each 30 secs, but in that case you are in danger of missing some bytes from original stream.
But I don’t recomend doing this using PHP. This language is rather designed to quickly process data for user and end (its “script”).
Simplest script:
Not recommended indeed.