Skip to content

Instantly share code, notes, and snippets.

@iflamed
Last active July 10, 2023 06:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iflamed/19e40111bc740c9685bd1e00385bfb87 to your computer and use it in GitHub Desktop.
Save iflamed/19e40111bc740c9685bd1e00385bfb87 to your computer and use it in GitHub Desktop.
ffmpeg视频采样截图审核
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
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