Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How I can get First Frame as Photo from youtube?

How I can get the first Frame in Youtube video as Image ?

or I have to use external too to help me to do this task?

thanks

like image 827
user1560992 Avatar asked Mar 11 '13 11:03

user1560992


People also ask

How do you get to the first frame of a YouTube video?

To get first frame image from video you can upload the video on this URL (ezgif.com) and get image sequence preferably by generating image sequence between 0 to 1 second.

How do I save a frame from a video?

On the Selection and media controls toolbar, click the Extract Frames button and select Extract Current Frame. In the Extract Current Frame dialog box, select a folder in which to save your file. In the File name field, type a filename. Click the Save as type drop-down list and select a file format.


1 Answers

For instance, if the video link is http://www.youtube.com/watch?v=JJrNopvzCy8

Extract the value of v and use it to download the the image..

Like:

http://img.youtube.com/vi/JJrNopvzCy8/0.jpg

I hope this will solve your problem,

Just be careful with the ?v=xxxxxxxx code

Note: For different frames, you may change the Number from 0.jpg to 1.jpg or more to fetch next frames of video in-case first starting frame of video is not required!

The Image will be by Default first frame of Video Size, so specify the image size in img tag, OR if sepcific size is must then use this YouTube Dev. API

Specific section in API link Thumbnails Section

OR we can try following example:

Video: https://www.youtube.com/watch?v=JJrNopvzCy8

  1. Default Thumb: http://i.ytimg.com/vi/JJrNopvzCy8/default.jpg

  2. MaxRes Thumb: http://i.ytimg.com/vi/JJrNopvzCy8/maxresdefault.jpg

  3. HQ Thumb: http://i.ytimg.com/vi/JJrNopvzCy8/hqdefault.jpg

  4. MQ Thumb: http://i.ytimg.com/vi/JJrNopvzCy8/mqdefault.jpg

  5. SD Thumb: http://i.ytimg.com/vi/JJrNopvzCy8/sddefault.jpg

Note: Some of the sizes will vary (OR may not be available as that follows resolutions available for the Video link)

Edit: For First Frame use this: http://img.youtube.com/vi/JJrNopvzCy8/0.jpg

like image 87
MarmiK Avatar answered Sep 22 '22 17:09

MarmiK