masnun / phptube
phptube allows scraping youtube and getting videos url for download
Installs: 133
Dependents: 0
Suggesters: 0
Security: 0
Stars: 36
Watchers: 10
Forks: 27
Open Issues: 1
Requires
- ext-curl: *
This package is not auto-updated.
Last update: 2024-11-09 12:47:19 UTC
README
The PHP Library to fetch Youtube video URIs from Watch URLs
- Author: Abu Ashraf Masnun
- Email: masnun@gmail.com
- Web: http://masnun.me
What is PHPTube?
PHPTube is a PHP Library that allows you to fetch the actual Video URIs (of multiple available formats) directly from the Youtube Watch URL.
How to use it?
<?php
require_once 'PhpTube.php';
$tube = new PhpTube();
$videos = $tube->getDownloadLink('http://www.youtube.com/watch?v=Q-0p7ogC51k');
var_dump($videos);
?>