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
I want to sample specific video frames using this command:
ffmpeg -i SampleVideo_1280x720_2mb.mp4 -vf select='eq(pict_type\,I)' -vsync 2 -s 1280x720 -f image2 thumbnails-%02d.jpeg
What's AV equievalent for this command and how can I pass select parameter in decode function?
container = av.open(path)
for frame in container.decode(video=0, vsync=2, select='eq(pict_type\,I)') # ?
The text was updated successfully, but these errors were encountered:
kharazi
changed the title
Question about your wrapper to ffmpeg
Question about wrapper parameters
May 13, 2017
Unfortunately, the vsync parameter is not a simple one, and contains a ton of logic that we have not implemented. It would be great if we did, but that is out of scope for a long time.
I'm going to retitle this issue and leave it here.
mikeboers
changed the title
Question about wrapper parameters
FFmpeg-like vsync logic
May 30, 2017
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I want to sample specific video frames using this command:
ffmpeg -i SampleVideo_1280x720_2mb.mp4 -vf select='eq(pict_type\,I)' -vsync 2 -s 1280x720 -f image2 thumbnails-%02d.jpeg
What's AV equievalent for this command and how can I pass select parameter in decode function?
The text was updated successfully, but these errors were encountered: