-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bad response when uploading large videos using form-based approach #142
Comments
@Kinozuko How large are the video files you are attempting to upload? Can you try uploading with a video you created, or an open source video like Big Buck Bunny that allows open distribution? Not only is uploading TV show rips against Vimeo TOS, it's possible that the upload is failing or being rejected due to the file name |
The videos are 400MB+, i tried it with a video i create and the video is uploaded but i'm getting the same response, 503 or ERROR |
@Kinozuko can you contact Vimeo and reference this GitHub issue in your message? We may need to troubleshoot in private and review account details. |
Hello, i tried to contact Vimeo but i didn't get a response I was trying to make a post to upload_link with a file in multipart-form called file_data, with small videos works fine but with large video i'm getting timeout response and can't upload anythins, this happen wit videos of 150MB+ I tried diferrent videos 14MB -> Works fine What should i do? |
@Kinozuko have you found a robust solution for even big files? Can you share? |
@xtsimpouris my solution was used the "upload_link" from the response from /me/videos route from Vimeo API after that doing a request to "upload_link" with the difference the request was a PUT instead POST, that works from me, also the request was made from Front End using typescript. That was my solution, not a practical solution but it worked |
I'm using the form-based approach to upload videos, i'm gettin the upload link action on this way:
After that i made a POST request to upload_link with a Multipart Form Body with a field called file_data, this POST works when i upload small videos, but with large videos i'm getting a bad response, but the videos are uploaded, that's why i don't know why i'm getting this response
Something the response is just ERROR
The text was updated successfully, but these errors were encountered: