Hi,
There is an example of uploading a file to the api using a form and updating an existing video using another form. Is there an easy way to upload the file and set some properties like author, tags, description etc. in a single form with php??
I added <input name="tags" value="tags" /> in the upload form but that doesn't seem to work..
Thnx for your help!
It is not possible to do this in a single step. Either you require the information in advance so you can pass them along as parameters in the /videos/create call, or you will have to do this after upload using a /videos/update call.