1.2.2 • Published 10 years ago

weibo-video v1.2.2

Weekly downloads
5
License
MIT
Repository
github
Last release
10 years ago

weibo-video

weibo video downloader

Command line usage

npm install weibo-video -g
weibo-video http://video.weibo.com/show?fid=1034:56cf9418a34dfb34292c0ede3a4ea9a5 output.mp4

Node stream usage

npm install weibo-video
var fs = require('fs');
var video = require('weibo-video');
video('http://video.weibo.com/show?fid=1034:56cf9418a34dfb34292c0ede3a4ea9a5').pipe(fs.createWriteStream('ouput.mp4'));

Sample usage with ffmpeg (fluent-ffmpeg)

npm install fluent-ffmpeg
var video = require('weibo-video');
var ffmpeg = require('fluent-ffmpeg');

ffmpeg(video('http://video.weibo.com/show?fid=1034:56cf9418a34dfb34292c0ede3a4ea9a5'))
  .seekInput('00:34')
  .duration('14')
  .output('output.mp4')
  .run();

License

MIT

1.2.2

10 years ago

1.2.1

10 years ago

1.2.0

10 years ago

1.1.0

10 years ago

1.0.0

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago