mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-21 10:49:25 +01:00
19 lines
392 B
C#
19 lines
392 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();
|
|||
|
|
codec = codecStr.Trim();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|