Clip Web videos.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
296 B

  1. const { clipVideo, VideoType } = require('../dist/cjs/development');
  2. const fs = require('fs');
  3. const clippedVideoBuffer = clipVideo({
  4. type: VideoType.YOUTUBE,
  5. url: 'https://www.youtube.com/watch?v=BaW_jenozKc',
  6. start: 0,
  7. end: 1,
  8. });
  9. fs.writeFileSync('output.webm', clippedVideoBuffer);