mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-22 19:29:24 +01:00
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.
19 lines
446 B
C#
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("_", ".");
|
|
}
|
|
}
|
|
}
|