2016-06-05 20:54:27 +00:00
|
|
|
---
|
|
|
|
short-description: The mandatory 'Hello world' example
|
|
|
|
...
|
|
|
|
|
2020-12-04 19:10:51 +00:00
|
|
|
{{ ALERT_JS.md }}
|
|
|
|
|
2016-06-16 00:38:03 +00:00
|
|
|
# Basic tutorial 1: Hello world!
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2016-05-17 14:52:21 +00:00
|
|
|
## Goal
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
Nothing better to get a first impression about a software library than
|
2016-05-17 14:52:21 +00:00
|
|
|
to print “Hello World” on the screen!
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
But since we are dealing with multimedia frameworks, we are going to
|
|
|
|
play a video instead.
|
|
|
|
|
2020-12-04 19:10:51 +00:00
|
|
|
{{ C.md }}
|
2016-05-16 14:30:34 +00:00
|
|
|
Do not be scared by the amount of code below: there are only 4 lines
|
|
|
|
which do *real* work. The rest is cleanup code, and, in C, this is
|
|
|
|
always a bit verbose.
|
2020-12-04 19:10:51 +00:00
|
|
|
{{ END_LANG.md }}
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
Without further ado, get ready for your first GStreamer application...
|
|
|
|
|
2016-05-17 14:52:21 +00:00
|
|
|
## Hello world
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2020-12-04 19:10:51 +00:00
|
|
|
{{ C+JS_FALLBACK.md }}
|
|
|
|
Copy this code into a text file named `basic-tutorial-1.c` (or find it
|
|
|
|
in your GStreamer installation).
|
|
|
|
|
|
|
|
**basic-tutorial-1.c**
|
|
|
|
|
|
|
|
{{ tutorials/basic-tutorial-1.c }}
|
|
|
|
|
|
|
|
Compile it as described in [Installing on Linux], [Installing on Mac OS
|
|
|
|
X] or [Installing on Windows]. If you get compilation errors,
|
|
|
|
double-check the instructions given in those sections.
|
|
|
|
|
|
|
|
If everything built fine, fire up the executable! You should see a
|
|
|
|
window pop up, containing a video being played straight from the
|
|
|
|
Internet, along with audio. Congratulations!
|
|
|
|
|
|
|
|
> ![Information] Need help?
|
|
|
|
>
|
|
|
|
> If you need help to compile this code, refer to the **Building the
|
|
|
|
> tutorials** section for your platform: [Linux], [Mac OS X] or
|
|
|
|
> [Windows], or use this specific command on Linux:
|
|
|
|
>
|
|
|
|
> `` gcc basic-tutorial-1.c -o basic-tutorial-1 `pkg-config --cflags --libs gstreamer-1.0` ``
|
|
|
|
>
|
|
|
|
> If you need help to run this code, refer to the **Running the
|
|
|
|
> tutorials** section for your platform: [Linux][1], [Mac OS X][2] or
|
|
|
|
> [Windows][3].
|
|
|
|
>
|
|
|
|
> Required libraries: `gstreamer-1.0`
|
|
|
|
{{ END_LANG.md }}
|
|
|
|
|
|
|
|
{{ PY.md }}
|
|
|
|
**basic-tutorial-1.py**
|
|
|
|
|
|
|
|
{{ tutorials/python/basic-tutorial-1.py }}
|
|
|
|
|
|
|
|
Just run the file with `python3 basic-tutorial-1.py`
|
|
|
|
{{ END_LANG.md }}
|
|
|
|
|
|
|
|
|
|
|
|
This tutorial opens a window and displays a movie, with accompanying audio. The
|
|
|
|
media is fetched from the Internet, so the window might take a few seconds to
|
|
|
|
appear, depending on your connection speed. Also, there is no latency management
|
|
|
|
(buffering), so on slow connections, the movie might stop after a few seconds.
|
|
|
|
See how [Basic tutorial 12: Streaming] solves this issue.
|
2016-05-17 14:52:21 +00:00
|
|
|
|
|
|
|
## Walkthrough
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
Let's review these lines of code and see what they do:
|
|
|
|
|
2020-12-04 19:10:51 +00:00
|
|
|
{{ C+JS_FALLBACK.md }}
|
|
|
|
{{ tutorials/basic-tutorial-1.c[9:11] }}
|
|
|
|
{{ END_LANG.md }}
|
|
|
|
|
|
|
|
{{ PY.md }}
|
|
|
|
{{ tutorials/python/basic-tutorial-1.py[15:17] }}
|
|
|
|
{{ END_LANG.md }}
|
|
|
|
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
This must always be your first GStreamer command. Among other things,
|
2019-08-28 13:08:09 +00:00
|
|
|
[gst_init]\():
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2016-05-27 18:44:08 +00:00
|
|
|
- Initializes all internal structures
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2016-05-27 18:44:08 +00:00
|
|
|
- Checks what plug-ins are available
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2016-05-27 18:44:08 +00:00
|
|
|
- Executes any command-line option intended for GStreamer
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2016-05-27 18:44:08 +00:00
|
|
|
If you always pass your command-line parameters
|
2019-08-28 13:08:09 +00:00
|
|
|
`argc` and `argv` to [gst_init]\() your application will automatically
|
2016-05-27 18:44:08 +00:00
|
|
|
benefit from the GStreamer standard command-line options (more on this
|
|
|
|
in [Basic tutorial 10: GStreamer tools])
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2020-12-04 19:10:51 +00:00
|
|
|
{{ C+JS_FALLBACK.md }}
|
|
|
|
{{ tutorials/basic-tutorial-1.c[13:17] }}
|
|
|
|
{{ END_LANG.md }}
|
|
|
|
|
|
|
|
{{ PY.md }}
|
|
|
|
{{ tutorials/python/basic-tutorial-1.py[18:22] }}
|
|
|
|
{{ END_LANG.md }}
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
This line is the heart of this tutorial, and exemplifies **two** key
|
2019-08-28 13:08:09 +00:00
|
|
|
points: [gst_parse_launch]\() and [playbin].
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2019-08-28 13:08:09 +00:00
|
|
|
### [gst_parse_launch]
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
GStreamer is a framework designed to handle multimedia flows. Media
|
|
|
|
travels from the “source” elements (the producers), down to the “sink”
|
|
|
|
elements (the consumers), passing through a series of intermediate
|
|
|
|
elements performing all kinds of tasks. The set of all the
|
|
|
|
interconnected elements is called a “pipeline”.
|
|
|
|
|
|
|
|
In GStreamer you usually build the pipeline by manually assembling the
|
|
|
|
individual elements, but, when the pipeline is easy enough, and you do
|
|
|
|
not need any advanced features, you can take the shortcut:
|
2019-08-28 13:08:09 +00:00
|
|
|
[gst_parse_launch]\().
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
This function takes a textual representation of a pipeline and turns it
|
|
|
|
into an actual pipeline, which is very handy. In fact, this function is
|
|
|
|
so handy there is a tool built completely around it which you will get
|
2016-05-27 18:44:08 +00:00
|
|
|
very acquainted with (see [Basic tutorial 10: GStreamer tools][Basic
|
2019-08-28 13:08:09 +00:00
|
|
|
tutorial 10: GStreamer tools] to learn about
|
|
|
|
[gst-launch-1.0] and the
|
|
|
|
[gst-launch-1.0] syntax).
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2019-08-28 13:08:09 +00:00
|
|
|
### [playbin]
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2019-08-28 13:08:09 +00:00
|
|
|
So, what kind of pipeline are we asking [gst_parse_launch]\() to build for
|
2016-05-16 14:30:34 +00:00
|
|
|
us? Here enters the second key point: We are building a pipeline
|
2019-08-28 13:08:09 +00:00
|
|
|
composed of a single element called [playbin].
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2019-08-28 13:08:09 +00:00
|
|
|
[playbin] is a special element which acts as a source and as a sink, and
|
2016-05-27 18:44:08 +00:00
|
|
|
is a whole pipeline. Internally, it creates and connects all the
|
|
|
|
necessary elements to play your media, so you do not have to worry about
|
|
|
|
it.
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
It does not allow the control granularity that a manual pipeline does,
|
|
|
|
but, still, it permits enough customization to suffice for a wide range
|
|
|
|
of applications. Including this tutorial.
|
|
|
|
|
2019-08-28 13:08:09 +00:00
|
|
|
In this example, we are only passing one parameter to [playbin], which
|
2016-05-16 14:30:34 +00:00
|
|
|
is the URI of the media we want to play. Try changing it to something
|
2019-08-28 13:08:09 +00:00
|
|
|
else! Whether it is an `http://` or `file://` URI, [playbin] will
|
2016-05-17 14:52:21 +00:00
|
|
|
instantiate the appropriate GStreamer source transparently!
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
If you mistype the URI, or the file does not exist, or you are missing a
|
|
|
|
plug-in, GStreamer provides several notification mechanisms, but the
|
|
|
|
only thing we are doing in this example is exiting on error, so do not
|
|
|
|
expect much feedback.
|
|
|
|
|
2020-12-04 19:10:51 +00:00
|
|
|
{{ C+JS_FALLBACK.md }}
|
|
|
|
{{ tutorials/basic-tutorial-1.c[18:20] }}
|
|
|
|
{{ END_LANG.md }}
|
|
|
|
|
|
|
|
{{ PY.md }}
|
|
|
|
{{ tutorials/python/basic-tutorial-1.py[23:25] }}
|
|
|
|
{{ END_LANG.md }}
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
This line highlights another interesting concept: the state. Every
|
|
|
|
GStreamer element has an associated state, which you can more or less
|
|
|
|
think of as the Play/Pause button in your regular DVD player. For now,
|
|
|
|
suffice to say that playback will not start unless you set the pipeline
|
2017-07-19 06:53:03 +00:00
|
|
|
to the `PLAYING` state.
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2019-08-28 13:08:09 +00:00
|
|
|
In this line, [gst_element_set_state]\() is setting `pipeline` (our only
|
2017-07-19 06:53:03 +00:00
|
|
|
element, remember) to the `PLAYING` state, thus initiating playback.
|
2016-05-27 18:44:08 +00:00
|
|
|
|
2020-12-04 19:10:51 +00:00
|
|
|
{{ C+JS_FALLBACK.md }}
|
|
|
|
{{ tutorials/basic-tutorial-1.c[21:26] }}
|
|
|
|
{{ END_LANG.md }}
|
|
|
|
|
2021-01-04 14:55:17 +00:00
|
|
|
{{ PY.md }}
|
2020-12-04 19:10:51 +00:00
|
|
|
{{ tutorials/python/basic-tutorial-1.py[26:32] }}
|
|
|
|
{{ END_LANG.md }}
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2016-05-17 14:52:21 +00:00
|
|
|
These lines will wait until an error occurs or the end of the stream is
|
2019-08-28 13:08:09 +00:00
|
|
|
found. [gst_element_get_bus]\() retrieves the pipeline's bus, and
|
|
|
|
[gst_bus_timed_pop_filtered]\() will block until you receive either an
|
2017-07-19 06:53:03 +00:00
|
|
|
ERROR or an `EOS` (End-Of-Stream) through that bus. Do not worry much
|
2016-05-16 14:30:34 +00:00
|
|
|
about this line, the GStreamer bus is explained in [Basic tutorial 2:
|
2016-05-27 18:44:08 +00:00
|
|
|
GStreamer concepts].
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2016-05-17 14:52:21 +00:00
|
|
|
And that's it! From this point onwards, GStreamer takes care of
|
2016-05-16 14:30:34 +00:00
|
|
|
everything. Execution will end when the media reaches its end (EOS) or
|
2016-05-17 14:52:21 +00:00
|
|
|
an error is encountered (try closing the video window, or unplugging the
|
|
|
|
network cable). The application can always be stopped by pressing
|
2016-05-16 14:30:34 +00:00
|
|
|
control-C in the console.
|
|
|
|
|
2016-05-17 14:52:21 +00:00
|
|
|
### Cleanup
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
Before terminating the application, though, there is a couple of things
|
|
|
|
we need to do to tidy up correctly after ourselves.
|
|
|
|
|
2020-12-04 19:10:51 +00:00
|
|
|
{{ C+JS_FALLBACK.md }}
|
|
|
|
{{ tutorials/basic-tutorial-1.c[27:33] }}
|
|
|
|
|
|
|
|
Always read the documentation of the functions you use, to know if you
|
|
|
|
should free the objects they return after using them.
|
|
|
|
|
|
|
|
In this case, [gst_bus_timed_pop_filtered]\() returned a message which
|
|
|
|
needs to be freed with [gst_message_unref]\() (more about messages in
|
|
|
|
[Basic tutorial 2: GStreamer concepts][Basic tutorial 2: GStreamer
|
|
|
|
concepts]).
|
|
|
|
|
|
|
|
[gst_element_get_bus]\() added a reference to the bus that must be freed
|
|
|
|
with [gst_object_unref]\(). Setting the pipeline to the NULL state will
|
|
|
|
make sure it frees any resources it has allocated (More about states in
|
|
|
|
[Basic tutorial 3: Dynamic pipelines]). Finally, unreferencing the
|
|
|
|
pipeline will destroy it, and all its contents.
|
|
|
|
{{ END_LANG.md }}
|
|
|
|
{{ PY.md }}
|
|
|
|
{{ tutorials/python/basic-tutorial-1.py[33:35] }}
|
|
|
|
The pipeline state should always be set back to [GST_STATE_NULL] before
|
|
|
|
quitting.
|
|
|
|
{{ END_LANG.md }}
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2016-05-17 14:52:21 +00:00
|
|
|
## Conclusion
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
And so ends your first tutorial with GStreamer. We hope its brevity
|
2016-05-17 14:52:21 +00:00
|
|
|
serves as an example of how powerful this framework is!
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
Let's recap a bit. Today we have learned:
|
|
|
|
|
2019-08-28 13:08:09 +00:00
|
|
|
- How to initialize GStreamer using [gst_init]\().
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2016-05-27 18:44:08 +00:00
|
|
|
- How to quickly build a pipeline from a textual description using
|
2019-08-28 13:08:09 +00:00
|
|
|
[gst_parse_launch]\().
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2019-08-28 13:08:09 +00:00
|
|
|
- How to create an automatic playback pipeline using [playbin].
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2016-05-27 18:44:08 +00:00
|
|
|
- How to signal GStreamer to start playback using
|
2019-08-28 13:08:09 +00:00
|
|
|
[gst_element_set_state]\().
|
2016-05-16 14:30:34 +00:00
|
|
|
|
2016-05-27 18:44:08 +00:00
|
|
|
- How to sit back and relax, while GStreamer takes care of everything,
|
2019-08-28 13:08:09 +00:00
|
|
|
using [gst_element_get_bus]\() and [gst_bus_timed_pop_filtered]\().
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
The next tutorial will keep introducing more basic GStreamer elements,
|
|
|
|
and show you how to build a pipeline manually.
|
|
|
|
|
2016-05-17 14:52:21 +00:00
|
|
|
It has been a pleasure having you here, and see you soon!
|
2016-05-27 18:44:08 +00:00
|
|
|
|
2016-11-05 08:18:49 +00:00
|
|
|
[Installing on Linux]: installing/on-linux.md
|
|
|
|
[Installing on Mac OS X]: installing/on-mac-osx.md
|
|
|
|
[Installing on Windows]: installing/on-windows.md
|
2018-11-11 15:49:19 +00:00
|
|
|
[Information]: images/icons/emoticons/information.svg
|
2016-11-05 08:18:49 +00:00
|
|
|
[Linux]: installing/on-linux.md#InstallingonLinux-Build
|
|
|
|
[Mac OS X]: installing/on-mac-osx.md#InstallingonMacOSX-Build
|
|
|
|
[Windows]: installing/on-windows.md#InstallingonWindows-Build
|
|
|
|
[1]: installing/on-linux.md#InstallingonLinux-Run
|
|
|
|
[2]: installing/on-mac-osx.md#InstallingonMacOSX-Run
|
|
|
|
[3]: installing/on-windows.md#InstallingonWindows-Run
|
|
|
|
[Basic tutorial 12: Streaming]: tutorials/basic/streaming.md
|
|
|
|
[Basic tutorial 10: GStreamer tools]: tutorials/basic/gstreamer-tools.md
|
|
|
|
[Basic tutorial 2: GStreamer concepts]: tutorials/basic/concepts.md
|
|
|
|
[Basic tutorial 3: Dynamic pipelines]: tutorials/basic/dynamic-pipelines.md
|
2019-08-28 13:08:09 +00:00
|
|
|
[gst_bus_timed_pop_filtered]: gst_bus_timed_pop_filtered
|
|
|
|
[gst_element_get_bus]: gst_element_get_bus
|
|
|
|
[gst_element_set_state]: gst_element_set_state
|
|
|
|
[gst_init]: gst_init
|
|
|
|
[gst_message_unref]: gst_message_unref
|
|
|
|
[gst_object_unref]: gst_object_unref
|
|
|
|
[gst_parse_launch]: gst_parse_launch
|
|
|
|
[playbin]: playbin
|
|
|
|
[gst-launch-1.0]: tools/gst-launch.md
|
2020-12-04 19:10:51 +00:00
|
|
|
[GST_STATE_NULL]: GST_STATE_NULL
|