JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q32531F
  • License ISC

Download any video from redgif asynchronous with sound!

Package Exports

  • redgif-dl

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (redgif-dl) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

redgif-dl

Rip any video from redgif with sound asyncrnously

Documentation

function dlRedGif(url, file_name, ?output_path = "", ?verbose = false)

  • Parameters:
    • url — The redgif video you want too download
    • file_name — The output file name (automatically append .mp4)
    • output_path — (optional) The output path (optional, if none is provided the current working directory is going to be used)
    • verbose — (optional) Decide wether or not the module will give a verbose output
  • Example:
const dlRedGif = require("redgif-dl")

dlRedGif("https://www.redgifs.com/watch/newdrearyblackwidowspider", "riley reid blow job", "./downloads", true)
    .then((path) => {
        console.log(`The high quality video is located at ${path.HQ}`);
        console.log(`The low quality video is located at ${path.LQ}`);
    })
    .catch((reason) => console.error(reason));
  • Returns: An promise containing the low quality and high quality video path