mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-16 16:37:48 +01:00
19 lines
450 B
C#
19 lines
450 B
C#
using System.Globalization;
|
|
|
|
namespace Flowframes.Data
|
|
{
|
|
class AudioTrack
|
|
{
|
|
public int streamIndex;
|
|
public string metadata;
|
|
public string codec;
|
|
|
|
public AudioTrack(int streamNum, string metaStr, string codecStr)
|
|
{
|
|
streamIndex = streamNum;
|
|
metadata = metaStr.Trim().Replace("_", ".").Replace(" ", ".");
|
|
codec = codecStr.Trim().Replace("_", ".");
|
|
}
|
|
}
|
|
}
|