1.0.28 • Published 5 years ago

youtube-giffify v1.0.28

Weekly downloads
13
License
MIT
Repository
github
Last release
5 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

5 years ago

1.0.27

5 years ago

1.0.26

5 years ago

1.0.25

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago