Fixing issue with youtube-dl and ffmpeg

This commit is contained in:
MichaelOultram 2015-08-12 22:51:18 +01:00
parent 82f00aaf13
commit e45a3e1a9b

View file

@ -48,6 +48,9 @@ func (dl *YouTubeDLSong) Download() error {
return nil return nil
} else { } else {
Verbose("youtube-dl: " + err.Error()) Verbose("youtube-dl: " + err.Error())
for s := range cmd.Args {
Verbose("youtube-dl args: " + s)
}
return errors.New("Song download failed.") return errors.New("Song download failed.")
} }
} }