Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/engine/src/services/videoFrameExtractor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -959,6 +959,12 @@ describe.skipIf(!HAS_FFMPEG)("extractAllVideoFrames on a VFR source", () => {
"smpte2084",
"-colorspace",
"bt2020nc",
// The -color_* flags above only tag the container/encoder context;
// whether they reach the H.264 VUI depends on the ffmpeg build (the
// pinned Windows CI build drops the transfer). Write the VUI directly
// so probing reports smpte2084 on every build (9/16/9 = bt2020/PQ/bt2020nc).
"-bsf:v",
"h264_metadata=colour_primaries=9:transfer_characteristics=16:matrix_coefficients=9",
src,
]);
if (!synth.success) {
Expand Down
Loading