前回の続きで、映像だけでなく音声も一緒にmp4ファイルに録画するようにしました。 #!/bin/sh if [ $# -ne 1 ]; then echo "Usage: " $0 " output_file" 1>&2 echo "Hit ^C to stop." 1>&2 exit 1 fi output_file=$1 gst-launch-1.0 -e \ v4l2src ! "video/x-raw,width=640,height=480,framerate=30/1" ! \ omxh264enc target-bitrate=1000000 control-rate=variable ! \ video/x-h264,profile=high ! h264parse ! queue ! \ mp4mux name=mux \ alsasrc device=hw:1 ! au