Created
December 23, 2010 15:30
-
-
Save vitorpacheco/753123 to your computer and use it in GitHub Desktop.
script para teste de upload de videos para o youtube
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
<?php | |
$yt = new Zend_Gdata_YouTube($httpClient); | |
// create a new Zend_Gdata_YouTube_VideoEntry object | |
$myVideoEntry = new Zend_Gdata_YouTube_VideoEntry(); | |
// create a new Zend_Gdata_App_MediaFileSource object | |
$filesource = $yt->newMediaFileSource('mytestmovie.mov'); | |
$filesource->setContentType('video/quicktime'); | |
// set slug header | |
$filesource->setSlug('mytestmovie.mov'); | |
// add the filesource to the video entry | |
$myVideoEntry->setMediaSource($filesource); | |
// create a new Zend_Gdata_YouTube_MediaGroup object | |
$mediaGroup = $yt->newMediaGroup(); | |
$mediaGroup->title = $yt->newMediaTitle()->setText('My Test Movie'); | |
$mediaGroup->description = $yt->newMediaDescription()->setText('My description'); | |
// the category must be a valid YouTube category | |
$mediaGroup->category = array( | |
$yt->newMediaCategory()->setText('Autos')->setScheme('http://gdata.youtube.com/schemas/2007/categories.cat'), | |
$yt->newMediaCategory()->setText('mydevelopertag')->setScheme('http://gdata.youtube.com/schemas/2007/developertags.cat'), | |
$yt->newMediaCategory()->setText('anotherdevelopertag')->setScheme('http://gdata.youtube.com/schemas/2007/developertags.cat'), | |
); | |
// set keywords | |
$mediaGroup->keywords = $yt->newMediaKeywords()->setText('cars, funny'); | |
$myVideoEntry->mediaGroup = $mediaGroup; | |
// set video location | |
$yt->registerPackage('Zend_Gdata_Geo'); | |
$yt->registerPackage('Zend_Gdata_Geo_Extension'); | |
$where = $yt->newGeoRssWhere(); | |
$position = $yt->newGmlPos('37.0 -122.0'); | |
$where->point = $yt->newGmlPoint($position); | |
$entry->setWhere($where); | |
// upload URL for the currently authenticated user | |
$uploadUrl = 'http://uploads.gdata.youtube.com/feeds/users/default/uploads'; | |
try { | |
$newEntry = $yt->insertEntry($myVideoEntry, $uploadUrl, 'Zend_Gdata_YouTube_VideoEntry'); | |
} catch (Zend_Gdata_App_Exception $e) { | |
echo $e->getMessage(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment