Question

I'm using the streaming PUT option to upload videos through Vimeo. One of my videos, about 8-MB, triggered some weird behavior and I'm not sure if it's a fluke or not.

I pushed the video in one go (no chunks). Now, when I call video.upload.verifyChunks, I consistently get a 709 error (unable to access chunk list). video.upload.checkTicket says I have a valid ticket still. Trying to complete gives a 504 Gateway Timeout error.

What additional information do I need to provide, and what have I done wrong?

Was it helpful?

Solution

video.upload.verifyChunks is for the HTTP POST method (https://developer.vimeo.com/apis/advanced/upload#post)

To verify a file for streaming (https://developer.vimeo.com/apis/advanced/upload#streaming-step4) you make a PUT request to the upload endpoint, with the header Content-Range: */*

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top