support channel folders

This commit is contained in:
Luke Pulverenti
2014-05-04 20:46:52 -04:00
parent c3f2021cad
commit 8aadbf3513
15 changed files with 123 additions and 48 deletions

View File

@@ -110,6 +110,7 @@
<Compile Include="LiveTv\SeriesTimerInfoDto.cs" />
<Compile Include="LiveTv\TimerInfoDto.cs" />
<Compile Include="Logging\NullLogger.cs" />
<Compile Include="MediaInfo\Constants.cs" />
<Compile Include="News\NewsItem.cs" />
<Compile Include="Providers\ExternalIdInfo.cs" />
<Compile Include="Providers\ImageProviderInfo.cs" />

View File

@@ -0,0 +1,24 @@

namespace MediaBrowser.Model.MediaInfo
{
public class Container
{
public string MP4 = "MP4";
}
public class AudioCodec
{
public string AAC = "AAC";
public string MP3 = "MP3";
}
public class VideoCodec
{
public string H263 = "H263";
public string H264 = "H264";
public string H265 = "H265";
public string MPEG4 = "MPEG4";
public string MSMPEG4 = "MSMPEG4";
public string VC1 = "VC1";
}
}