mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
Update Windows81Profile.cs
Removed .mov and added m4a to DirectPlay profiles
This commit is contained in:
parent
c63c39ce57
commit
4b1962d779
@ -7,7 +7,7 @@ namespace MediaBrowser.Dlna.Profiles
|
||||
[XmlRoot("Profile")]
|
||||
public class Windows81Profile : DefaultProfile
|
||||
{
|
||||
public Windows81Profile()
|
||||
public Windows81Profile()
|
||||
{
|
||||
Name = "Windows 8/RT";
|
||||
|
||||
@ -55,7 +55,7 @@ namespace MediaBrowser.Dlna.Profiles
|
||||
{
|
||||
new DirectPlayProfile
|
||||
{
|
||||
Container = "mp4,mov",
|
||||
Container = "mp4",
|
||||
VideoCodec = "h264,mpeg4",
|
||||
AudioCodec = "aac,ac3,eac3,mp3,pcm",
|
||||
Type = DlnaProfileType.Video
|
||||
@ -99,6 +99,14 @@ namespace MediaBrowser.Dlna.Profiles
|
||||
Type = DlnaProfileType.Audio
|
||||
},
|
||||
|
||||
new DirectPlayProfile
|
||||
{
|
||||
Container = "m4a",
|
||||
AudioCodec = "aac",
|
||||
VideoCodec = "",
|
||||
Type = DlnaProfileType.Audio
|
||||
},
|
||||
|
||||
new DirectPlayProfile
|
||||
{
|
||||
Container = "jpeg",
|
||||
|
Loading…
Reference in New Issue
Block a user