mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Cuetools.Converter.exe: support for --decoder-option parameter.
Implemented "Stream" option in BDLPCM Reader to make it possible to select the right stream in m2ts file.
This commit is contained in:
17
CUETools.Codecs.BDLPCM/BDLPCMReaderSettings.cs
Normal file
17
CUETools.Codecs.BDLPCM/BDLPCMReaderSettings.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Text;
|
||||
|
||||
namespace CUETools.Codecs.BDLPCM
|
||||
{
|
||||
public class BDLPCMReaderSettings : AudioDecoderSettings
|
||||
{
|
||||
public BDLPCMReaderSettings()
|
||||
{
|
||||
}
|
||||
|
||||
[Browsable(false)]
|
||||
public string Stream { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user