Advertisement
Haooo

Untitled

Mar 1st, 2017
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #!/bin/bash
  2.  
  3. # Assignment 1
  4. #   720p
  5. gst-launch-1.0 filesrc location=~/Downloads/tears_of_steel_720p.mp4 ! qtdemux name=d d.video_0 ! queue ! h264parse ! avdec_h264 ! videoconvert ! autovideosink d.audio_0 ! queue ! mpegaudioparse ! mad ! audioconvert ! audioresample ! autoaudiosink
  6.  
  7. #   1080p
  8. gst-launch-1.0 filesrc location=~/Downloads/sintel-1024-surround.mp4 ! qtdemux name=d d.video_0 ! queue ! h264parse ! avdec_h264 ! videoconvert ! autovideosink d.audio_0 ! queue ! aacparse ! faad ! audioconvert ! audioresample ! autoaudiosink
  9.  
  10.  
  11.  
  12. # Assignment 2
  13. #   720p
  14. gst-launch-1.0 filesrc location=~/Downloads/tears_of_steel_720p.mp4 ! qtdemux name=d d.video_0 ! queue ! h264parse ! avdec_h264 ! videoconvert ! glimagesink d.audio_0 ! queue ! mpegaudioparse ! mad ! audioconvert ! audioresample ! pulsesink device-name="Built-in Audio Analog Stereo"
  15.  
  16. #   1080p
  17. gst-launch-1.0 filesrc location=~/Downloads/sintel-1024-surround.mp4 ! qtdemux name=d d.video_0 ! queue ! h264parse ! avdec_h264 ! videoconvert ! glimagesink d.audio_0 ! queue ! aacparse ! faad ! audioconvert ! audioresample ! pulsesink device-name="Built-in Audio Analog Stereo"
  18.  
  19.  
  20.  
  21. # Assignment 3
  22. #   720p
  23. # TODO (width=320,height=133)
  24. #
  25. #   1080p
  26. gst-launch-1.0 filesrc location=~/Downloads/sintel-1024-surround.mp4 ! qtdemux name=d d.video_0 ! queue ! h264parse ! avdec_h264 ! videoscale ! video/x-raw,width=320,height=136 ! x264enc tune="zerolatency" bitrate="1024" ! m. qtmux name=m ! filesink location=~/Downloads/1080p_resized.mp4 d.audio_0 ! queue ! m.
  27.  
  28.  
  29. # Assignment 4
  30. #   720p
  31. gst-launch-1.0 videomixer name=mix background="3" sink_0::zorder=2 sink_1::zorder=1 ! videoconvert ! autovideosink filesrc location=~/Downloads/logo.png ! pngdec ! imagefreeze ! videoconvert ! mix.sink_0 filesrc location=~/Downloads/tears_of_steel_720p.mp4 ! decodebin name=demux demux. ! queue ! videoscale ! video/x-raw,width=1026,height=428 ! mix.sink_1 demux. ! queue ! audioconvert ! autoaudiosink
  32.  
  33. #   10800p
  34. gst-launch-1.0 videomixer name=mix background="3" sink_0::zorder=2 sink_1::zorder=1 ! videoconvert ! autovideosink filesrc location=~/Downloads/logo.png ! pngdec ! imagefreeze ! videoconvert ! mix.sink_0 filesrc location=~/Downloads/sintel-1024-surround.mp4 ! decodebin name=demux demux. ! queue ! videoscale ! video/x-raw,width=1024,height=436 ! mix.sink_1 demux. ! queue ! audioconvert ! autoaudiosink
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement