You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Be able to use the length-parameter within a file's first 12 frames.
Current behaviour
All length-values >=12 becomes 12.
Steps to reproduce
Wrong result:
LOAD 1 amb
CALL 1 LENGTH 5
Correct result can be achieved by a workaround:
LOAD 1 amb length 0
CALL 1 LENGTH 5
....or by
LOAD 1 amb length 5
The workaround suggests that explicitly setting a lower length, either on or after the LOAD, prevents the 12 first frames from being "loaded into some kind of buffer".
Environment
2.4 (haven't tried others)
1080i50000 channel (haven't tried others)
Screenshots
If applicable, add screenshots as complementary information.
The text was updated successfully, but these errors were encountered:
I would guess that this is the ffmpeg producer filling the buffer before considering the length, as the buffer is fps/4 frames, which would be 12 for a 50i/p channel
Expected behaviour
Be able to use the
length
-parameter within a file's first 12 frames.Current behaviour
All
length
-values >=12 becomes 12.Steps to reproduce
Wrong result:
LOAD 1 amb
CALL 1 LENGTH 5
Correct result can be achieved by a workaround:
LOAD 1 amb length 0
CALL 1 LENGTH 5
....or by
LOAD 1 amb length 5
The workaround suggests that explicitly setting a lower length, either on or after the LOAD, prevents the 12 first frames from being "loaded into some kind of buffer".
Environment
Screenshots
If applicable, add screenshots as complementary information.
The text was updated successfully, but these errors were encountered: