diff options
author | Antonio Garcia-Dominguez <antonio.garciadominguez@uca.es> | 2012-01-27 11:08:28 +0100 |
---|---|---|
committer | Antonio Garcia-Dominguez <antonio.garciadominguez@uca.es> | 2012-01-27 11:08:28 +0100 |
commit | c8f08b64956bd14022479b674490a18648ab8caa (patch) | |
tree | 17314a6d2ff9e33316eef5b3b7fb9aed03a7182d | |
parent | 65f3dbaabec5bcae7b1a88fcb6c4ad4a0bf84d70 (diff) |
Switch from YUY2 to YV12 for ffmpegcolorspace in order to support Ubuntu 11.04 again
-rwxr-xr-x | prepare-videochat.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prepare-videochat.sh b/prepare-videochat.sh index 3d94c2e..4644853 100755 --- a/prepare-videochat.sh +++ b/prepare-videochat.sh @@ -190,7 +190,7 @@ set +e info "Using IP Webcam as webcam/microphone. You can now open your videochat app." "$GSTLAUNCH" -v \ souphttpsrc location="http://$IP:$PORT/videofeed" do-timestamp=true is_live=true \ - ! multipartdemux ! jpegdec ! ffmpegcolorspace ! "video/x-raw-yuv, format=(fourcc){YUY2}" ! videoflip method="$FLIP_METHOD" ! v4l2sink device=/dev/video0 \ + ! multipartdemux ! jpegdec ! ffmpegcolorspace ! "video/x-raw-yuv, format=(fourcc){YV12}" ! videoflip method="$FLIP_METHOD" ! v4l2sink device=/dev/video0 \ souphttpsrc location="http://$IP:$PORT/audio.wav" do-timestamp=true is_live=true \ ! wavparse ! audioconvert ! volume volume=3 ! rglimiter ! pulsesink device=null sync=false \ 2>&1 | tee feed.log |