1.0.28 • Published 3 years ago

youtube-giffify v1.0.28

Weekly downloads
13
License
MIT
Repository
github
Last release
3 years ago

Youtube-GIFFIFY

Convert youtube videos to gifs on the fly

NPM


Usage

const { generateGif } = require("youtube-giffify");

generateGif(
  "https://www.youtube.com/watch?v=7JgdzmrqTXU", // Youtube video url
  "./example.gif", // Output file path
  {
    // Options
    fps: 24,
  }
).then((filename) => console.log(filename));

// In async function
const res = await generateGif(
  "https://www.youtube.com/watch?v=7JgdzmrqTXU", // Youtube video url
  "./example.gif", // Output file path
  {
    // Options
    fps: 24,
  }
);

Options


1.0.28

3 years ago

1.0.27

3 years ago

1.0.26

3 years ago

1.0.25

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago