Skip to content

Commit

Permalink
Oops, fix scaling in CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
jonko0493 committed Mar 3, 2022
1 parent 891ff19 commit 3c8b178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion THP-Converter-CS-CLI/Classes/MP4Video.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void Convert()
UseShellExecute = false,
WindowStyle = ProcessWindowStyle.Hidden,
FileName = "cmd.exe",
Arguments = $"/c thpconv.exe -j temp/*.jpg -r {Rate}{(UseAudio ? " - s temp.wav" : "")} -d output.thp"
Arguments = $"/c thpconv.exe -j temp/*.jpg -r {Rate}{(UseAudio ? " -s temp.wav" : "")} -d output.thp"
}).WaitForExit();
File.Move("output.thp", OutFile.FullName);
Console.WriteLine($"Converted {InFile.Name} to {OutFile.Name}");
Expand Down

0 comments on commit 3c8b178

Please sign in to comment.