diff --git a/yashgen/YoutubeDl.cs b/yashgen/YoutubeDl.cs index 2804136..4051686 100644 --- a/yashgen/YoutubeDl.cs +++ b/yashgen/YoutubeDl.cs @@ -34,7 +34,7 @@ public static string CallYoutubeDl(string videoId, string ydlPath, var videoUrl = $"https://www.youtube.com/watch?v={videoId}"; var info = new ProcessStartInfo(ydlPath, - $"--ignore-config --no-progress " + + $"--no-progress " + $"-f bestaudio -x --audio-format wav --add-metadata " + $"-o {OUTPUT_FOLDER}/%(id)s.%(ext)s \"{videoUrl}\"" ); @@ -91,4 +91,4 @@ private static void ErrorDataReceived(object sender, DataReceivedEventArgs e) } -} \ No newline at end of file +}