masnun/phptube

There is no license information available for the latest version (v1.0.0) of this package.

phptube allows scraping youtube and getting videos url for download

v1.0.0 2012-06-28 14:10 UTC

This package is not auto-updated.

Last update: 2024-04-13 10:22:44 UTC


README

The PHP Library to fetch Youtube video URIs from Watch URLs

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);
?>