1.0.2 • Published 7 years ago

media-fetcher v1.0.2

Weekly downloads
14
License
-
Repository
github
Last release
7 years ago

media-fetcher

Fetching image, audio, video then store buffer in object. Ready to transform to other formats.

Basic Usage

const mediaFetcher = require('media-fetcher');

const imageUrl = 'https://upload.wikimedia.org/wikipedia/en/2/22/Heckert_GNU_white.svg';

mediaFetcher.createMedia(imageUrl)
    .then(media => {
        console.log(`type: ${media.getType()}`);
        console.log(`content-type: ${media.getContentType()}`);
        console.log(`base64: ${media.getBase64()}`);
    })
    .catch(err => {
        throw err;
    });