Skip to content

Commit

Permalink
Add more missing video file attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
robinp7720 committed Jan 23, 2024
1 parent 37ca467 commit c6b6620
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion src/models/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,30 @@ export const streamColumns = {
divx_packed: DataTypes.BOOLEAN,

side_data_type: DataTypes.STRING,
closed_captions: DataTypes.BOOLEAN
closed_captions: DataTypes.BOOLEAN,

extradata_size: DataTypes.INTEGER,
film_grain: DataTypes.STRING,

dv_version_major: DataTypes.STRING,
dv_version_minor: DataTypes.STRING,
dv_profile: DataTypes.STRING,
dv_level: DataTypes.STRING,
rpu_present_flag: DataTypes.STRING,
el_present_flag: DataTypes.STRING,
bl_present_flag: DataTypes.STRING,
dv_bl_signal_compatibility_id: DataTypes.STRING,

max_content: DataTypes.STRING,
max_average: DataTypes.STRING,
red_x: DataTypes.STRING,
red_y: DataTypes.STRING,
green_x: DataTypes.STRING,
green_y: DataTypes.STRING,
blue_x: DataTypes.STRING,
blue_y: DataTypes.STRING,
white_point_y: DataTypes.STRING,
white_point_x: DataTypes.STRING,
min_luminance: DataTypes.STRING,
max_luminance: DataTypes.STRING
};

0 comments on commit c6b6620

Please sign in to comment.