Last active
July 10, 2023 06:24
-
-
Save iflamed/19e40111bc740c9685bd1e00385bfb87 to your computer and use it in GitHub Desktop.
ffmpeg视频采样截图审核
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -hwaccel auto -i ../test02.MOV -vf "scale=iw/2:ih/2,fps=1" -c:v mjpeg -f image2pipe | processProgram | |
# 或者 | |
ffmpeg -hwaccel auto -i ../test02.MOV -vf "scale=iw/2:ih/2,fps=1" -c:v mjpeg -f image2pipe - | processProgram | |
# rtmp or rtsp server | |
ffmpeg -hwaccel auto -i rtsp://localhost:8554/mytv/test02 -vf "scale=iw/2:ih/2,fps=1" -f image2 out%03d.jpg | |
ffmpeg -i rtsp://localhost:8554/mytv/test02 -vf fps=1 -f image2 out%03d.jpg | |
ffmpeg -i rtsp://localhost:8554/mytv/test02 -vf fps=1 -q:v 6 -f image2 out%03d.jpg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -hwaccel auto -i ../test02.MOV -vf "scale=iw/2:ih/2,fps=1" -f image2 out%03d.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment