15 lines
482 B
Bash
15 lines
482 B
Bash
|
|
#!/bin/sh
|
||
|
|
export DISPLAY=:0.0
|
||
|
|
#export GST_DEBUG=*:5
|
||
|
|
#export GST_DEBUG_FILE=/tmp/2.txt
|
||
|
|
export mpp_syslog_perror=1
|
||
|
|
|
||
|
|
echo "message: output to /home/linaro/2k.ts!"
|
||
|
|
|
||
|
|
gst-launch-1.0 videotestsrc num-buffers=512 ! video/x-raw,format=NV12,width=1920,height= 1080,framerate=30/1 \
|
||
|
|
! queue ! mpph264enc ! queue ! h264parse ! mpegtsmux ! filesink location=/home/linaro/2k.ts
|
||
|
|
|
||
|
|
echo "message: playing encoded video!"
|
||
|
|
|
||
|
|
gst-launch-1.0 uridecodebin uri=file:///home/linaro/2k.ts ! xvimagesink
|