Can i upload videos to youtube using an as3 based Adobe Air application, record it, send it to a server and then submit to a youtube account channel?
Are there any tutorials on this?
Thanks in advance.
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.
Short answer: yes.
Long answer: It is going to take some effort, but you have the pieces from the sounds of it.
Youtube Upload API: http://code.google.com/apis/youtube/2.0/developers_guide_protocol.html#Uploading_Videos
Flash Recording API:
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/NetStream.html#publish()
I don’t know if you are familiar with flash recording, but if you have an installation of
Flash Media Server, the publishing portion is really pretty simple. GrabCamera, attach toNetStream,publish().Once your video is on the server, it is simply a matter of implementing the required youtube API calls on the PHP end. I have never worked with their API.