I have this script in my website: video feed
As you can see there is no additional info. However I managed to show the video title with:
html.push('<li onclick="loadVideo(\'', playerUrl, '\', true)">',
'<img src="',
thumbnailUrl, '" width="116" height="76"/> <span> ',title,' </span> </li>');
My question is: How can I show more than the title of the video, like stats: number of views, video link, additional uploader content etc. I don't need everything of course but it would be nice to show a bit more than just the video title. I have read the api documents(find here) but could not find anything, however I'm no expert so I could have overlooked something.
Thanks