Checking output of youtube-dl when downloading[ci skip]
This commit is contained in:
parent
549669bef8
commit
1024c9e9af
|
@ -41,7 +41,7 @@ func (dl *YouTubeDLSong) Download() error {
|
|||
// Checks to see if song is already downloaded
|
||||
if _, err := os.Stat(fmt.Sprintf("%s/.mumbledj/songs/%s", dj.homeDir, dl.Filename())); os.IsNotExist(err) {
|
||||
cmd := exec.Command("youtube-dl", "--no-mtime", "--output", fmt.Sprintf("%s/.mumbledj/songs/%s", dj.homeDir, dl.Filename()), "--format m4a", "--prefer-ffmpeg", dl.url)
|
||||
output, err = cmd.CombinedOutput()
|
||||
output, err := cmd.CombinedOutput()
|
||||
if err == nil {
|
||||
if dj.conf.Cache.Enabled {
|
||||
dj.cache.CheckMaximumDirectorySize()
|
||||
|
|
Reference in a new issue