GStreamer Daemon - Gapless Playback: Difference between revisions

From RidgeRun Developer Wiki
mNo edit summary
mNo edit summary
Line 1: Line 1:
<seo title="GStreamer Daemon | Gstd | Gstd-1.0 | Gstd-1.x | RidgeRun" titlemode="replace" keywords="GStreamer, Linux SDK, Linux BSP,  Embedded Linux, Device Drivers, Nvidia, Xilinx, TI, NXP, Freescale, Embedded Linux driver development, Linux Software development, Embedded Linux SDK, Embedded Linux Application development, GStreamer Multimedia Framework."  description="GStreamer Daemon is a GStreamer framework for controlling audio and video streaming. Learn about Gstreamer Daemon gapless playback from RidgeRun Developer."></seo>
{{GStreamer Daemon Page|[[GStreamer Daemon - Simple Examples|Simple Examples]]|[[GStreamer Daemon - MP4 Video Recording|MP4 Video Recording]]|
{{GStreamer Daemon Page|[[GStreamer Daemon - Simple Examples|Simple Examples]]|[[GStreamer Daemon - MP4 Video Recording|MP4 Video Recording]]|


Line 40: Line 38:
./simple-gapless-playback.sh /tmp/video.mp4
./simple-gapless-playback.sh /tmp/video.mp4
</syntaxhighlight>
</syntaxhighlight>


}}
}}

Revision as of 08:41, 21 June 2019


Simple Examples

Home

MP4 Video Recording


The Gapless Playback example will run a video from start to end sequentially in an infinite loop. To do so, it will wait for the file playback to finish before rewinding to the beginning of the file and restarting playback. The end of the playback is detected by polling the pipeline bus for the End Of Stream (EOS) message, which is posted by the Filesrc element when all the content has been read. The rewinding is done by sending a Seek event to the pipeline, which effectively restarts the pipeline.

Example

The following example is a bash script that demonstrates the simple gapless playback.

#!/bin/bash

# Absolute path to the video location
VIDEO=$1

# Graceful cleanup upon CTRL-C
trap "gstd-client pipeline_delete p; exit" SIGHUP SIGINT SIGTERM

# Make sure there is no pipeline with this name already
gstd-client pipeline_delete p

gstd-client pipeline_create p playbin uri=file://$VIDEO

# Listen to the EOS messages
gstd-client bus_filter p eos

gstd-client pipeline_play p

# Wait for the message to perform seek
while true; do
    gstd-client bus_read p
    gstd-client event_seek p 1.0
done

To run the script you will need an existing video. You may use the video recording simple example to quickly use Gstd-1.0 to record one. To run the Gapless script type

./simple-gapless-playback.sh /tmp/video.mp4





Simple Examples

Home

MP4 Video Recording