hc
2024-03-26 e0728245c89800c2038c23308f2d88969d5b41c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
 
export DISPLAY=:0.0
#export GST_DEBUG=*:5
#export GST_DEBUG_FILE=/tmp/2.txt
 
case "$1" in
   rk3036) ###TODO:Display bug, since rk3036 just two overlay.
   sudo service lightdm stop
   sleep 2
   gst-launch-1.0 uridecodebin uri=file:///usr/local/test.mp4 ! kmssink plane-id=52
   sudo service lightdm start
   ;;
   rk) ### rkximagesink for better performance
   gst-launch-1.0 uridecodebin uri=file:///usr/local/test.mp4  ! rkximagesink
   ;;
*)
    ### xvimagesink for better compatibility
   gst-play-1.0 --videosink=xvimagesink /usr/local/test.mp4
   ;;
esac
shift