-
-
Save deivisonarthur/40e40330731457a9ebbe to your computer and use it in GitHub Desktop.
Get Vimeo MP4 URL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getVimeoMP4($vimeo_id) { | |
$result = file_get_contents( "http://keepvid.com/?url=http%3A%2F%2Fvimeo.com%2F" . $vimeo_id ); | |
preg_match_all('/"(http\:\/\/pdl.vimeocdn.com.+?)"/i', $result, $matches); | |
return $matches[1][1]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment