From 74c53c4c0b06b2e03130acf63cb87ff5979e5b60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Gangs=C3=B8?= Date: Thu, 28 Sep 2023 13:18:26 +0200 Subject: [PATCH] test: update xdcam test --- services/transcode/xdcam_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/transcode/xdcam_test.go b/services/transcode/xdcam_test.go index 7490ed4c..b439a564 100644 --- a/services/transcode/xdcam_test.go +++ b/services/transcode/xdcam_test.go @@ -8,7 +8,7 @@ import ( ) func Test_GenerateFFmpegParamsForXDCAM(t *testing.T) { - const golden = `-progress pipe:1 -hide_banner -i something.mxf -c:v mpeg2video -pix_fmt yuv422p -color_primaries bt709 -color_trc bt709 -colorspace bt709 -y -b:v 50M -s 1920x1080 -r 25 -flags +ilme+ildct -top 1 something/something.mxf` + const golden = `-progress pipe:1 -hide_banner -i something.mxf -c:v mpeg2video -pix_fmt yuv422p -color_primaries bt709 -color_trc bt709 -colorspace bt709 -y -b:v 50M -s 1920x1080 -r 25 -flags +ilme+ildct -vf setfield=tff,fieldorder=tff something/something.mxf` const root = "root/" const outputPath = "something/something.mxf"