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

add MediaInfo to improve media analysis for video files

This commit is contained in:
Luke Pulverenti 2014-09-20 11:48:23 -04:00
parent 698fe57e53
commit 42f0520499
3 changed files with 6 additions and 1 deletions

View file

@ -1256,6 +1256,10 @@
attributes.push(createAttribute(Globalize.translate('MediaInfoPixelFormat'), stream.PixelFormat));
}
if (stream.RefFrames) {
attributes.push(createAttribute(Globalize.translate('MediaInfoRefFrames'), stream.RefFrames));
}
if (stream.Type != "Video") {
attributes.push(createAttribute(Globalize.translate('MediaInfoDefault'), (stream.IsDefault ? 'Yes' : 'No')));
}