I want to use cURL to post a video to Yahoo Video. I planned to make two calls to yahoo as follows:
- call to sign in to an existing account and store the returned cookie
- call to send the cookie, collected video metadata (title, description, etc.), AND the file
But the problem is that apparently, the original Video Upload form sends the data in two calls. The obvious one is a POST which only sends the meta data. The file itself is handled by a flash uploader and it is not clear where the data is sent and what is sent along with the file data itself.
Any idea where to look for answers?