We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Detect scene changes on a 23 sec video:
When running filters like scene change detection on 4K HEVC 10-bit footage video from iPhone 15:
ffmpeg -i IMG_7049.MOV -t 1 -filter_complex 'select='\''gt(scene,0.3)'\'',metadata=print:file=-' -f null -
The above command uses about 500% CPU and takes about 34 to complete on a 23 sec video.
Also tested other commands:
# Slow (2fps) ffmpeg -i IMG_7049.MOV -c:v libx264 out.mov # Fast (22fps) ffmpeg -i IMG_7049.MOV -f null -
The biggest issue is that there is no progress being emitted at all from ffmpeg.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Detect scene changes on a 23 sec video:
When running filters like scene change detection on 4K HEVC 10-bit footage video from iPhone 15:
The above command uses about 500% CPU and takes about 34 to complete on a 23 sec video.
Also tested other commands:
The biggest issue is that there is no progress being emitted at all from ffmpeg.
The text was updated successfully, but these errors were encountered: