Fix download not converting into other media formats if specified

This commit is contained in:
bytedream 2022-03-28 19:56:09 +02:00
parent 051cad4537
commit e4d075c855

View file

@ -216,6 +216,9 @@ func downloadInfo(info formatInformation, file *os.File) error {
}
return nil
})
if hasFFmpeg() {
downloader.FFmpegOpts = make([]string, 0)
}
sig := make(chan os.Signal, 1)
signal.Notify(sig, os.Interrupt)