Clip Web videos.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

12 rader
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);