2021-02-23 22:26:13 +01:00
|
|
|
|
using System.Globalization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Flowframes.Data
|
|
|
|
|
|
{
|
|
|
|
|
|
class AudioTrack
|
|
|
|
|
|
{
|
|
|
|
|
|
public int streamIndex;
|
2021-02-24 10:21:47 +01:00
|
|
|
|
public string metadata;
|
2021-02-23 22:26:13 +01:00
|
|
|
|
public string codec;
|
|
|
|
|
|
|
2021-02-24 10:21:47 +01:00
|
|
|
|
public AudioTrack(int streamNum, string metaStr, string codecStr)
|
2021-02-23 22:26:13 +01:00
|
|
|
|
{
|
|
|
|
|
|
streamIndex = streamNum;
|
2021-02-24 10:21:47 +01:00
|
|
|
|
metadata = metaStr.Trim().Replace("_", ".").Replace(" ", ".");
|
2021-02-24 09:59:18 +01:00
|
|
|
|
codec = codecStr.Trim().Replace("_", ".");
|
2021-02-23 22:26:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|