2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:02:23 -07:00
|
|
|
namespace MediaBrowser.Model.Dlna
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
|
|
|
public interface ITranscoderSupport
|
|
|
|
{
|
|
|
|
bool CanEncodeToAudioCodec(string codec);
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
bool CanEncodeToSubtitleCodec(string codec);
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
bool CanExtractSubtitles(string codec);
|
|
|
|
}
|
|
|
|
|
|
|
|
public class FullTranscoderSupport : ITranscoderSupport
|
|
|
|
{
|
|
|
|
public bool CanEncodeToAudioCodec(string codec)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public bool CanEncodeToSubtitleCodec(string codec)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2020-04-05 09:10:56 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
public bool CanExtractSubtitles(string codec)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|