twitter-video-downloader
Version:
This is a video downloader and converter for a given video included twitter status update.
19 lines (15 loc) • 382 B
Markdown
`ffmpeg` cli should already be installed on your system.
npm install --save twitter-video-downloader
```javascript
var tvd = require('twitter-video-downloader');
tvd('https://twitter.com/GIPHY/status/836063152542482434')
.then(function(videoReadableBufferStream) {
// DO SOMETHING WITH MP4 FORMATTED VIDEO
}
);
```
MIT