Advertisement
Guest User

Untitled

a guest
Oct 30th, 2012
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. $ gst-launch-0.10 -e v4l2src ! video/x-raw-yuv, width=720, height=480, framerate=2997/100, format=UYVY ! ffmpegcolorspace ! x264enc speed-preset=ultrafast tune=zerolatency bitrate=5000 ! matroskamux ! filesink location=test.mkv GST_DEBUG=3
  2. WARNING: erroneous pipeline: no property "GST_DEBUG" in element "filesink0"
  3.  
  4. $ gst-launch-0.10 -e v4l2src ! video/x-raw-yuv, GST_DEBUG=3, width=720, height=480, framerate=2997/100, format=UYVY ! ffmpegcolorspace ! x264enc speed-preset=ultrafast tune=zerolatency bitrate=5000 ! matroskamux ! filesink location=test.mkv
  5. WARNING: erroneous pipeline: could not link v4l2src0 to ffmpegcsp0
  6.  
  7. $ gst-launch-0.10 -e v4l2src GST_DEBUG=3 ! video/x-raw-yuv, width=720, height=480, framerate=2997/100, format=UYVY ! ffmpegcolorspace ! x264enc speed-preset=ultrafast tune=zerolatency bitrate=5000 ! matroskamux ! filesink location=test.mkv
  8. WARNING: erroneous pipeline: no property "GST_DEBUG" in element "v4l2src0"
  9.  
  10. $ gst-launch-0.10 GST_DEBUG=3 -e v4l2src ! video/x-raw-yuv, width=720, height=480, framerate=2997/100, format=UYVY ! ffmpegcolorspace ! x264enc speed-preset=ultrafast tune=zerolatency bitrate=5000 ! matroskamux ! filesink location=test.mkv
  11. ERROR: pipeline could not be constructed: Unrecoverable syntax error while parsing pipeline GST_DEBUG=3 v4l2src ! video/x-raw-yuv, width=720, height=480, framerate=2997/100, format=UYVY ! ffmpegcolorspace ! x264enc speed-preset=ultrafast tune=zerolatency bitrate=5000 ! matroskamux ! filesink location=test.mkv .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement