1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

New: Added Mediainfo Video Dynamic Range column for movies

(cherry picked from commit ae0e23fc8ee450a20b43ca622eeccd0759451a2f)

Closes #7247
This commit is contained in:
Mark McDowall
2022-04-24 13:18:48 -07:00
committed by Bogdan
parent e4c5fc5c6e
commit c6e3f3c26c
8 changed files with 41 additions and 6 deletions
@@ -201,8 +201,8 @@ class MovieFileEditorRow extends Component {
className={styles.audio}
>
<MediaInfoConnector
movieFileId={id}
type={mediaInfoTypes.AUDIO}
movieFileId={id}
/>
</TableRowCell>
);
@@ -243,8 +243,22 @@ class MovieFileEditorRow extends Component {
className={styles.video}
>
<MediaInfoConnector
movieFileId={id}
type={mediaInfoTypes.VIDEO}
movieFileId={id}
/>
</TableRowCell>
);
}
if (name === 'videoDynamicRangeType') {
return (
<TableRowCell
key={name}
className={styles.videoDynamicRangeType}
>
<MediaInfoConnector
type={mediaInfoTypes.VIDEO_DYNAMIC_RANGE_TYPE}
movieFileId={id}
/>
</TableRowCell>
);