Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vimeo video downloading through API

Tags:

php

vimeo

Is there a way to get the direct download link of a vimeo video using PHP vimeo API?

I tried this stackoverflow answer, but moogaloop's links don't work. It has be more than a year since Vimeo updated their API.

Is there any way to get a direct link/downloading videos through API/PHP.

like image 893
Asghar Avatar asked Mar 27 '13 12:03

Asghar


People also ask

Does Vimeo have an API?

NOTE: The Vimeo API is a REST API. REST, or representational state transfer, is an architectural style or design philosophy for interacting with online resources (like videos) using standard HTTP methods, including GET, POST, and PATCH. We built the Vimeo API to adhere to REST principles and practices.

Can clients download videos from Vimeo?

Vimeo members have the option to enable their videos for download. But if you have a Basic or Free membership, your viewers will not be able to download your videos; if you upgrade your account, the option for enabling downloads will be automatically turned on.

What can I do with Vimeo API?

The Vimeo API is an automated programming interface which gives its users access to uploading video files to the Vimeo platform through their own applications. This functionality also lets you manage videos and embed them into your web resources.


1 Answers

For Vimeo PRO Account:

You can get the direct link for any video or all videos in your account. To get the download link for all videos you have to call the following API with your access token.

GET https://api.vimeo.com/me/videos

or you can get the download link for a single video by calling the following API

https://api.vimeo.com/me/videos/{video_id}

In responses, you can find download['link']

For more information go to Vimeo API Documentation

like image 194
Omkar Singh Avatar answered Sep 24 '22 12:09

Omkar Singh