mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-23 03:39:26 +01:00
Skip muxing from input if input is frames, not a video
This commit is contained in:
@@ -10,6 +10,7 @@ using I = Flowframes.Interpolate;
|
||||
using System.Diagnostics;
|
||||
using Flowframes.Data;
|
||||
using Flowframes.Media;
|
||||
using Microsoft.VisualBasic.Logging;
|
||||
|
||||
namespace Flowframes.Main
|
||||
{
|
||||
@@ -231,6 +232,12 @@ namespace Flowframes.Main
|
||||
|
||||
bool muxFromInput = Config.GetInt("audioSubTransferMode") == 0;
|
||||
|
||||
if (muxFromInput && I.current.inputIsFrames)
|
||||
{
|
||||
Logger.Log("Skipping muxing from input step as there is no input video, only frames.", true);
|
||||
return;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
if (muxFromInput)
|
||||
|
||||
Reference in New Issue
Block a user