This file contains 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
gst-launch-0.10 v4l2src device=/dev/video0 \ | |
! "image/jpeg,width=640,height=480,framerate=5/1" \ | |
! videorate \ | |
! "image/jpeg,framerate=1/6" \ | |
! multifilesink location="./images/image-%06d.jpg" |
This file contains 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
gst-launch-0.10 v4l2src device=/dev/video0 \ | |
! "image/jpeg,width=640,height=480,framerate=5/1" \ | |
! videorate \ | |
! "image/jpeg,framerate=1/6" \ | |
! jpegdec \ | |
! clockoverlay time-format="%d.%m.%Y %H:%M:%S" \ | |
! jpegenc \ | |
! multifilesink location="./images/image-%06d.jpg" |
This file contains 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
gst-launch-0.10 v4l2src device=/dev/video0 \ | |
! "video/x-raw-yuv,width=640,height=480,framerate=5/1" \ | |
! videorate \ | |
! "video/x-raw-yuv,framerate=1/6" \ | |
! clockoverlay time-format="%d.%m.%Y %H:%M:%S" \ | |
! jpegenc \ | |
! multifilesink location="./images/image-%06d.jpg" |
This file contains 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
gst-launch-0.10 multifilesrc location="./images/image-%06d.jpg" \ | |
! "image/jpeg,framerate=12/1" \ | |
! jpegparse \ | |
! jpegdec \ | |
! x264enc \ | |
! avimux \ | |
! filesink location=video.avi |