Youtube to snapshots and GIFs.
This module was forked from node-youtube. It is an extended version of it, providing more ffmpeg features and creating gifs from local paths.
Have you ever dreamt of creating a gif out of a youtube video ? Then you are in the right place
This package allows you to take a screenshot, a gif or a portion out of a youtube video.
This package is the son of these two amazing parents:
Dependencies:
You need to get ffmpeg and ffprobe installed to start using this package.
Installation :
$ npm install youtube.com-extended --save
How does it work ?
Instantiate the youtube
object :
var Youtube = ; // You can instantiate the youtube object using the video url var youtube = ; // or you can also specify the video id var youtube = ;
Crop a youtube video :
youtube ;
The .crop()
method takes a 4th argument which is the format of the video to download example : ['--format=18']
This format is exactly the same we specify when downloading a youtube video using the Youtube-dl package. Make sure to take a look at it for more info.
Take a screenshot :
youtube ;
The .snapshot()
method also takes the format as its 3rd argument.
Creating a GIF :
youtube ;
Creating a GIF from local path video file
var Youtube = ; var youtube = ; // do NOT provide any argument here youtube ;
The .gif()
method takes 1 more argument, which is options
object.
options.size
: The hight and width of the final gif ex :"600x300"
options.ratio
: The aspect argument may either be a number or a X:Y string. For example, '4:3' or 1.33333options.fps
: An integer representing the fps of the final gifoptions.maxWidth
: An integer representing the max width of final gif,ffprobe
used here to get original video width and choose minimum value, ignored whenoptions.size
providedoptions.maxHeight
: An integer representing the fps of the final gif,ffprobe
used here to get original video width and choose minimum value, ignored whenoptions.size
provided
You can find more details on size
, ratio
, fps
arguments on the Fluent-ffmpeg package.
Creating a GIF with different options
youtube ; youtube ;
Downloading a video
youtube ;
Again, the format is the same as the one mentioned before.