Advertisement
Guest User

Untitled

a guest
Jan 14th, 2021
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. const cp = require('child_process');
  2.  
  3. var ffmpeg = cp.spawn('ffmpeg', [
  4. '-i', 'in1.mp4',
  5. '-i', 'in2.mp3',
  6. '-map', '0:v',
  7. '-map', '1:a',
  8. '-c', 'copy',
  9. 'pipe:1',
  10.  
  11. ]);
  12. ffmpeg.stdout.pipe('outputnew.mp4');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement