Skip to content

Commit

Permalink
fixed ffmpeg download
Browse files Browse the repository at this point in the history
forgot to uncomment a line bruh
  • Loading branch information
MightyZanark authored Jul 2, 2022
1 parent 114b19e commit a789789
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UsmToolkit/Commands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ protected int OnExecute(CommandLineApplication app)
string ffmpegZipPath = Path.Combine(AppContext.BaseDirectory, "ffmpeg.zip");
string ffmpegExePath = Path.Combine(AppContext.BaseDirectory, "ffmpeg.exe");
Console.WriteLine($"Downloading FFmpeg from {conf.FFmpeg}\nThis action may take a while");
//client.DownloadFile(conf.FFmpeg, ffmpegZipPath);
client.DownloadFile(conf.FFmpeg, ffmpegZipPath);

Console.WriteLine($"Extracting ffmpeg...");
using (ZipArchive archive = ZipFile.OpenRead(ffmpegZipPath))
Expand Down

0 comments on commit a789789

Please sign in to comment.