Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. YouTubeDl('http://www.youtube.com/watch?v=' + videoId, {
  2. filter: function(format) {
  3.  
  4. return format.container === 'mp4';
  5. }
  6. })
  7. .pipe(fs.createWriteStream('music.mp3'))
  8. .on('error', function(err) {
  9.  
  10. //Do smth. with error
  11. })
  12. .on('finish', function() {
  13.  
  14. //do smth. on finish..
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement