Skip to content

Generate Urls for all thumbnails to Youtube Video with CORS allow

License

Notifications You must be signed in to change notification settings

MatanMaimon/youtube-thumbnails

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

youtube-thumbnails npm

Get a youtube thumbnails

Instalation

$ npm install youtube-thumbnails

#Methods

call the module

var youthumb = require('youtube-thumbnails');

youthumb.all(id, callback)

Get all the available youtube thumbnails for a given id.

id

The id from the youtube video you want a thumbnail from.

like "dlte2Mfg614" from https://www.youtube.com/watch?v=dlte2Mfg614

callback(thumbnails)

return an object, thumbnails, with all the links.

Example

youthumb.all('dlte2Mfg614', function(thumbnails) {
    console.log(youthumbs);
}
Result:
{
  default: 'https://i.ytimg.com/vi/dlte2Mfg614/default.jpg',
  medium: 'https://i.ytimg.com/vi/dlte2Mfg614/mqdefault.jpg',
  high: 'https://i.ytimg.com/vi/dlte2Mfg614/hqdefault.jpg',
  standard: 'https://i.ytimg.com/vi/dlte2Mfg614/sddefault.jpg',
  maxres: 'https://i.ytimg.com/vi/dlte2Mfg614/maxresdefault.jpg'
 }

youthumb.get(id, quality, callback)

Get a single youtube thumbnail link in the quality you specify.

id

The id from the youtube video you want a thumbnail from.

like "la9C0n7jSsI" from https://www.youtube.com/watch?v=la9C0n7jSsI

quality

The quality on the youtube picture.

callback(error, thumbnail)

return an error if there was an error else it return a thumbnail link.

Example

youthumb.get('la9C0n7jSsI', 'maxres', function(err, thumbnail) {
    if (err)
        console.log(err);
    else {
        console.log(thumbnail);
    }
});
Result:
https://i.ytimg.com/vi/la9C0n7jSsI/maxresdefault.jpg

Version

1.0.2 License

MIT

About

Generate Urls for all thumbnails to Youtube Video with CORS allow

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%