WP theme for YouTube Help!

czech

New member
Dec 8, 2010
31
1
0
I am looking for a WP theme that would allow registered users and admin to upload YouTube embeds that would also grab or create a thumb automatically for the vid and create a new page for each upload, obviously the admin will be able to delete anything not appropriate.

I know there are several themes that let you add youtube videos but I cant find anything that will grab or create the thumbs automatically.

It would also have to be easy to do a new design around it.


Any and all help appreciated :)

Thanks
 


Stack overflow is your friend.

Each YouTube video has 4 generated images. They are predictably formatted as follows:

Code:
http://img.youtube.com/vi/<insert-youtube-video-id-here>/0.jpg
http://img.youtube.com/vi/<insert-youtube-video-id-here>/1.jpg
http://img.youtube.com/vi/<insert-youtube-video-id-here>/2.jpg
http://img.youtube.com/vi/<insert-youtube-video-id-here>/3.jpg
The first one in the list is a full size image and others are thumbnail images. The default thumbnail image (ie. one of 1.jpg, 2.jpg, 3.jpg) is:

Code:
http://img.youtube.com/vi/<insert-youtube-video-id-here>/default.jpg
For the high quality version of the thumbnail use a url similar to this:

Code:
http://img.youtube.com/vi/<insert-youtube-video-id-here>/hqdefault.jpg
Alternatively, you can use the YouTube API to get thumbnail images.

Taken from:
php - How to get thumbnail of YouTube video link using YouTube API? - Stack Overflow
 
Stack overflow is your friend.

Each YouTube video has 4 generated images. They are predictably formatted as follows:

Code:
http://img.youtube.com/vi/<insert-youtube-video-id-here>/0.jpg
http://img.youtube.com/vi/<insert-youtube-video-id-here>/1.jpg
http://img.youtube.com/vi/<insert-youtube-video-id-here>/2.jpg
http://img.youtube.com/vi/<insert-youtube-video-id-here>/3.jpg
The first one in the list is a full size image and others are thumbnail images. The default thumbnail image (ie. one of 1.jpg, 2.jpg, 3.jpg) is:

Code:
http://img.youtube.com/vi/<insert-youtube-video-id-here>/default.jpg
For the high quality version of the thumbnail use a url similar to this:

Code:
http://img.youtube.com/vi/<insert-youtube-video-id-here>/hqdefault.jpg
Alternatively, you can use the YouTube API to get thumbnail images.

Taken from:
php - How to get thumbnail of YouTube video link using YouTube API? - Stack Overflow

Thanks I will pass the info on to the guy trying to install it :)