1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

add dlna service methods

This commit is contained in:
Luke Pulverenti 2014-03-26 15:21:29 -04:00
parent adc96abf4e
commit da74410dfb
5 changed files with 217 additions and 1 deletions

View file

@ -1118,6 +1118,10 @@
attributes.push(createAttribute("Sample Rate", stream.SampleRate + ' khz'));
}
if (stream.PixelFormat) {
attributes.push(createAttribute("Pixel Format", stream.PixelFormat));
}
if (stream.Type != "Video") {
attributes.push(createAttribute("Default", (stream.IsDefault ? 'Yes' : 'No')));
}