[insert_php]
$channel_name = ‘TEDxTalks’;//Be sure to change this to your channel
$count = 8;//# of videos you want to show (MAX = 20)
$em_width = 420;//width of embedded player
$em_height = 315;//height of embedded player
$wrap_class = ‘video’;//class name for the div wrapper

//The output…
$sxml = simplexml_load_file(“http://gdata.youtube.com/feeds/api/users/$channel_name/uploads?max-results=$count”);
foreach ($sxml->entry as $entry) {
$vidKey = substr(strrchr($entry->id,’/’),1);
echo ”

“;
}
[/insert_php]