Files
flowframes/Code/Data/AudioTrack.cs
N00MKRAD 55d71d6328 Output streams: Support missing stream files, skip instead of erroring
If for some reason an audio or sub track failed to extract, it will now simply ommit it in the output file instead of failing to mux the video entirely.
2021-02-24 09:59:18 +01:00

19 lines
446 B
C#

using System.Globalization;
namespace Flowframes.Data
{
class AudioTrack
{
public int streamIndex;
public string title;
public string codec;
public AudioTrack(int streamNum, string titleStr, string codecStr)
{
streamIndex = streamNum;
title = titleStr.Trim().Replace("_", ".").Replace(" ", ".");
codec = codecStr.Trim().Replace("_", ".");
}
}
}