Open multistream files with ffdshow

This commit is contained in:
Grigory Chudov
2018-04-07 13:55:01 -04:00
parent 6f79ab7ebe
commit bfcbd825b2
13 changed files with 136 additions and 97 deletions

View File

@@ -32,6 +32,8 @@ namespace CUETools.Codecs.ffmpegdll
public abstract string Format { get; }
public int StreamId { get; set; }
// [DisplayName("Version")]
// [Description("Library version")]
// public string Version => Marshal.PtrToStringAnsi(MACLibDll.GetVersionString());
@@ -100,4 +102,13 @@ namespace CUETools.Codecs.ffmpegdll
this.Init();
}
}
public class MpegTSDecoderSettings : DecoderSettings, IAudioDecoderSettings
{
public override string Extension => "m2ts";
public override string Format => "mpegts";
public MpegTSDecoderSettings()
{
this.Init();
}
}
}