File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -161,9 +161,8 @@ def testTranscodeYUV420():
161
161
customProfile [av .avProfileIdentificator ] = "customProfile"
162
162
customProfile [av .avProfileIdentificatorHuman ] = "custom profile"
163
163
customProfile [av .avProfileType ] = av .avProfileTypeVideo
164
- customProfile [av .avProfileFrameRate ] = "25"
165
164
customProfile [av .avProfileCodec ] = "mpeg2video"
166
- customProfile [av .avProfilePixelFormat ] = "yuv422p "
165
+ customProfile [av .avProfilePixelFormat ] = "yuv420p "
167
166
168
167
transcoder .add ( inputFileName , 0 , customProfile )
169
168
@@ -177,5 +176,5 @@ def testTranscodeYUV420():
177
176
dst_videoStream = dst_properties .getVideoProperties ()[0 ]
178
177
179
178
assert_equals ( "mpeg2video" , dst_videoStream .getCodecName () )
180
- assert_equals ( "yuv422p " , dst_videoStream .getPixelProperties ().getPixelName () )
179
+ assert_equals ( "yuv420p " , dst_videoStream .getPixelProperties ().getPixelName () )
181
180
You can’t perform that action at this time.
0 commit comments