summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephane Desneux <stephane.desneux@open.eurogiciel.org>2015-02-27 18:31:20 +0100
committerStephane Desneux <stephane.desneux@open.eurogiciel.org>2015-02-27 18:31:20 +0100
commite17967a3e09f89ec7621ec8f50b8cce41f1cff85 (patch)
tree8d9168921976ae754955b78a06459e5273ed3aba
parent2f3deede9240f192b540266a923b98425d072f92 (diff)
downloaddesktop-skin-e17967a3e09f89ec7621ec8f50b8cce41f1cff85.tar.gz
desktop-skin-e17967a3e09f89ec7621ec8f50b8cce41f1cff85.tar.bz2
desktop-skin-e17967a3e09f89ec7621ec8f50b8cce41f1cff85.zip
playbin doesn't work well in some situations. Typically when running on a full HD screen, the video is not scaled to full screen. Also, sometimes, videos do not play at all, depending on hardware (fails to run on NUC E3815) Change-Id: Ic8f3f2ad725041dd7559cfdb6098cdc0625313ed Signed-off-by: Stephane Desneux <stephane.desneux@open.eurogiciel.org>
-rwxr-xr-xScript/launch_video.sh17
-rwxr-xr-xScript/launch_video2.sh17
2 files changed, 22 insertions, 12 deletions
diff --git a/Script/launch_video.sh b/Script/launch_video.sh
index 5b1293b..8c64aaa 100755
--- a/Script/launch_video.sh
+++ b/Script/launch_video.sh
@@ -4,18 +4,23 @@
# Launch web cam
#
-touch $HOME/gstvid-pid
-alreadyrunning=`cat $HOME/gstvid-pid`
+pidfile=$HOME/.gstvid-pid
-URL=file:///usr/share/media/videos/AmazingNature_480p.mp4
+touch $pidfile
+alreadyrunning=`cat $pidfile`
+
+video=/usr/share/media/videos/AmazingNature_480p.mp4
if [ $(echo $alreadyrunning | wc -w) -lt 3 ] ; then
echo "create new"
- gst-launch-1.0 playbin uri=$URL &
- echo $! >> $HOME/gstvid-pid
+ #gst-launch-1.0 playbin uri=$URL &
+ gst-launch-1.0 filesrc location=$video ! qtdemux name=demux \
+ demux.audio_0 ! queue ! decodebin ! audioconvert ! audioresample ! autoaudiosink \
+ demux.video_0 ! queue ! vaapidecode ! vaapisink &
+ echo $! >> $pidfile
else echo "already running"
for x in $alreadyrunning; do kill -9 $x; done
- rm -rf $HOME/gstvid-pid
+ rm -rf $pidfile
fi
diff --git a/Script/launch_video2.sh b/Script/launch_video2.sh
index 017fb0a..6402784 100755
--- a/Script/launch_video2.sh
+++ b/Script/launch_video2.sh
@@ -4,18 +4,23 @@
# Launch web cam
#
-touch $HOME/gstvid-pid
-alreadyrunning=`cat $HOME/gstvid-pid`
+pidfile=$HOME/.gstvid2-pid
-URL=file:///usr/share/media/videos/Caminandes_1080p.mp4
+touch $pidfile
+alreadyrunning=`cat $pidfile`
+
+video=/usr/share/media/videos/Caminandes_1080p.mp4
if [ $(echo $alreadyrunning | wc -w) -lt 1 ] ; then
echo "create new"
- gst-launch-1.0 playbin uri=$URL &
- echo $! >> $HOME/gstvid-pid
+ #gst-launch-1.0 playbin uri=$URL &
+ gst-launch-1.0 filesrc location=$video ! qtdemux name=demux \
+ demux.audio_0 ! queue ! decodebin ! audioconvert ! audioresample ! autoaudiosink \
+ demux.video_0 ! queue ! vaapidecode ! vaapisink fullscreen=1 &
+ echo $! >> $pidfile
else echo "already running"
for x in $alreadyrunning; do kill -9 $x; done
- rm -rf $HOME/gstvid-pid
+ rm -rf $pidfile
fi