문제

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?

도움이 되었습니까?

해결책

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: */*

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top