mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-10 01:38:49 +01:00
support channel folders
This commit is contained in:
@@ -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" />
|
||||
|
||||
24
MediaBrowser.Model/MediaInfo/Constants.cs
Normal file
24
MediaBrowser.Model/MediaInfo/Constants.cs
Normal 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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user