Compare commits
No commits in common. "1b8420f1abe0ce9b8e136fb4532924e071e6aefb" and "9c5aac20335cc681c7205e00e259de7f80b8562c" have entirely different histories.
1b8420f1ab
...
9c5aac2033
|
@ -524,7 +524,7 @@ class Program
|
|||
{
|
||||
var combinedOutputFilePath = $"{_ffmpegFolderPath}\\{songName}_combined_{DateTime.Now:yyyy-MM-dd_HH-mm-ss}.mp4";
|
||||
var ffmpegArgs =
|
||||
$"-y -i \"{videoFilePath}\" -i \"{audioFilePath}\" {_encoder} -preset fast -crf 23 -r {_framerate} -c:a aac -strict experimental -shortest \"{combinedOutputFilePath}\"";
|
||||
$"-y -i \"{videoFilePath}\" -i \"{audioFilePath}\" -c:v copy -c:a aac -strict experimental -shortest \"{combinedOutputFilePath}\"";
|
||||
|
||||
var processInfo = new ProcessStartInfo
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue