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

update tv recording page

This commit is contained in:
Luke Pulverenti 2013-12-12 23:06:38 -05:00
parent fb64641b57
commit 72b7920f68
9 changed files with 56 additions and 34 deletions

View file

@ -870,16 +870,6 @@
attributes.push('<span class="mediaInfoAttribute">' + (parseInt(stream.BitRate / 1000)) + ' kbps</span>');
}
if (stream.SampleRate) {
attributes.push('<span class="mediaInfoAttribute">' + stream.SampleRate + ' khz</span>');
}
var framerate = stream.AverageFrameRate || stream.RealFrameRate;
if (framerate && item.MediaType != "Audio") {
attributes.push('<span class="mediaInfoAttribute">' + framerate + '</span>');
}
if (stream.IsDefault) {
attributes.push('<span class="mediaInfoAttribute">Default</span>');
}