diff options
author | Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com> | 2012-11-12 16:26:10 +0100 |
---|---|---|
committer | Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com> | 2012-11-12 16:26:10 +0100 |
commit | 5757d868f451db513019f3f14bfa33e510edb299 (patch) | |
tree | d0b2e35b273ba79bb51f98bf626ce10675af3005 | |
parent | 0294e3822a1fc6e7071e67e581c6fd1a7c23a130 (diff) | |
download | ivi-demo-config-5757d868f451db513019f3f14bfa33e510edb299.tar.gz ivi-demo-config-5757d868f451db513019f3f14bfa33e510edb299.tar.bz2 ivi-demo-config-5757d868f451db513019f3f14bfa33e510edb299.zip |
Add sound to video playbacksubmit/trunk/20121112.152859accepted/trunk/20121112.150636
Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
Change-Id: I205e23a3426b192d1e76a326673414e842682829
-rw-r--r-- | packaging/ivi-demo-config.spec | 2 | ||||
-rw-r--r-- | packaging/start_video.sh | 9 |
2 files changed, 6 insertions, 5 deletions
diff --git a/packaging/ivi-demo-config.spec b/packaging/ivi-demo-config.spec index 582b018..a4492f7 100644 --- a/packaging/ivi-demo-config.spec +++ b/packaging/ivi-demo-config.spec @@ -1,6 +1,6 @@ Name: ivi-demo-config Summary: Custom configs for Tizen IVI demos -Version: 0.0.9 +Version: 0.1.0 Release: 1 Group: System Environment/Libraries License: Apache License, Version 2.0 diff --git a/packaging/start_video.sh b/packaging/start_video.sh index b256707..4ec777d 100644 --- a/packaging/start_video.sh +++ b/packaging/start_video.sh @@ -1,6 +1,7 @@ #!/bin/bash - gst-launch-0.10 filesrc location=/usr/share/sample-media/videos/Visual_Dreams_720.mp4 ! qtdemux ! vaapidecode ! vaapisink fullscreen=true ; - gst-launch-0.10 filesrc location=/usr/share/sample-media/videos/sintel_720.mp4 ! qtdemux ! vaapidecode ! vaapisink fullscreen=true ; - gst-launch-0.10 filesrc location=/usr/share/sample-media/videos/BigBuckBunny_512kb.mp4 ! qtdemux ! vaapidecode ! vaapisink fullscreen=true ; - gst-launch-0.10 filesrc location=/usr/share/sample-media/videos/Rico_Star.mp4 ! qtdemux ! vaapidecode ! vaapisink fullscreen=true ; +VOLUME=0.5 + gst-launch-0.10 filesrc location=/usr/share/sample-media/videos/Visual_Dreams_720.mp4 ! qtdemux name=demuxer demuxer.video_00 ! vaapidecode ! vaapisink fullscreen=true demuxer.audio_00 ! queue ! decodebin ! pulsesink buffer-time=1190 volume=$VOLUME; + gst-launch-0.10 filesrc location=/usr/share/sample-media/videos/sintel_720.mp4 ! qtdemux name=demuxer demuxer.video_00 ! vaapidecode ! vaapisink fullscreen=true demuxer.audio_00 ! queue ! decodebin ! pulsesink buffer-time=1190 volume=$VOLUME; + gst-launch-0.10 filesrc location=/usr/share/sample-media/videos/BigBuckBunny_512kb.mp4 ! qtdemux name=demuxer demuxer.video_00 ! vaapidecode ! vaapisink fullscreen=true demuxer.audio_00 ! queue ! decodebin ! pulsesink buffer-time=1190 volume=$VOLUME; + gst-launch-0.10 filesrc location=/usr/share/sample-media/videos/Rico_Star.mp4 ! qtdemux name=demuxer demuxer.video_00 ! vaapidecode ! vaapisink fullscreen=true demuxer.audio_00 ! queue ! decodebin ! pulsesink buffer-time=1190 volume=$VOLUME; |