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)
- Parameters:
url— The redgif video you want too downloadfile_name— The output file name (automatically append .mp4)output_path— The output path (optional, if none is provided.is going to be used)
- Example:
const dlRedGif = require("redgif-dl")
dlRedGif("https://www.redgifs.com/watch/newdrearyblackwidowspider", "riley reid blow job", "./downloads")
.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