mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-15 11:55:32 +00:00
playback/player: Port gst-play from gst-plugins-base to GstPlayer
This commit is contained in:
commit
5c289ec20a
3 changed files with 692 additions and 0 deletions
143
playback/player/gst-play/gst-play-kb.c
Normal file
143
playback/player/gst-play/gst-play-kb.c
Normal file
|
@ -0,0 +1,143 @@
|
|||
/* GStreamer command line playback testing utility - keyboard handling helpers
|
||||
*
|
||||
* Copyright (C) 2013 Tim-Philipp Müller <tim centricular net>
|
||||
* Copyright (C) 2013 Centricular Ltd
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "gst-play-kb.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#ifdef G_OS_UNIX
|
||||
#include <unistd.h>
|
||||
#include <termios.h>
|
||||
#endif
|
||||
|
||||
#include <gst/gst.h>
|
||||
|
||||
/* This is all not thread-safe, but doesn't have to be really */
|
||||
|
||||
#ifdef G_OS_UNIX
|
||||
|
||||
static struct termios term_settings;
|
||||
static gboolean term_settings_saved = FALSE;
|
||||
static GstPlayKbFunc kb_callback;
|
||||
static gpointer kb_callback_data;
|
||||
static gulong io_watch_id;
|
||||
|
||||
static gboolean
|
||||
gst_play_kb_io_cb (GIOChannel * ioc, GIOCondition cond, gpointer user_data)
|
||||
{
|
||||
GIOStatus status;
|
||||
|
||||
if (cond & G_IO_IN) {
|
||||
gchar buf[16] = { 0, };
|
||||
gsize read;
|
||||
|
||||
status = g_io_channel_read_chars (ioc, buf, sizeof (buf) - 1, &read, NULL);
|
||||
if (status == G_IO_STATUS_ERROR)
|
||||
return FALSE;
|
||||
if (status == G_IO_STATUS_NORMAL) {
|
||||
if (kb_callback)
|
||||
kb_callback (buf, kb_callback_data);
|
||||
}
|
||||
}
|
||||
|
||||
return TRUE; /* call us again */
|
||||
}
|
||||
|
||||
gboolean
|
||||
gst_play_kb_set_key_handler (GstPlayKbFunc kb_func, gpointer user_data)
|
||||
{
|
||||
GIOChannel *ioc;
|
||||
int flags;
|
||||
|
||||
if (!isatty (STDIN_FILENO)) {
|
||||
GST_INFO ("stdin is not connected to a terminal");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (io_watch_id > 0) {
|
||||
g_source_remove (io_watch_id);
|
||||
io_watch_id = 0;
|
||||
}
|
||||
|
||||
if (kb_func == NULL && term_settings_saved) {
|
||||
/* restore terminal settings */
|
||||
if (tcsetattr (STDIN_FILENO, TCSAFLUSH, &term_settings) == 0)
|
||||
term_settings_saved = FALSE;
|
||||
else
|
||||
g_warning ("could not restore terminal attributes");
|
||||
|
||||
setvbuf (stdin, NULL, _IOLBF, 0);
|
||||
}
|
||||
|
||||
if (kb_func != NULL) {
|
||||
struct termios new_settings;
|
||||
|
||||
if (!term_settings_saved) {
|
||||
if (tcgetattr (STDIN_FILENO, &term_settings) != 0) {
|
||||
g_warning ("could not save terminal attributes");
|
||||
return FALSE;
|
||||
}
|
||||
term_settings_saved = TRUE;
|
||||
|
||||
/* Echo off, canonical mode off, extended input processing off */
|
||||
new_settings = term_settings;
|
||||
new_settings.c_lflag &= ~(ECHO | ICANON | IEXTEN);
|
||||
|
||||
if (tcsetattr (STDIN_FILENO, TCSAFLUSH, &new_settings) != 0) {
|
||||
g_warning ("Could not set terminal state");
|
||||
return FALSE;
|
||||
}
|
||||
setvbuf (stdin, NULL, _IONBF, 0);
|
||||
}
|
||||
}
|
||||
|
||||
ioc = g_io_channel_unix_new (STDIN_FILENO);
|
||||
|
||||
/* make non-blocking */
|
||||
flags = g_io_channel_get_flags (ioc);
|
||||
g_io_channel_set_flags (ioc, flags | G_IO_FLAG_NONBLOCK, NULL);
|
||||
|
||||
io_watch_id = g_io_add_watch_full (ioc, G_PRIORITY_DEFAULT, G_IO_IN,
|
||||
(GIOFunc) gst_play_kb_io_cb, user_data, NULL);
|
||||
g_io_channel_unref (ioc);
|
||||
|
||||
kb_callback = kb_func;
|
||||
kb_callback_data = user_data;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
#else /* !G_OS_UNIX */
|
||||
|
||||
gboolean
|
||||
gst_play_kb_set_key_handler (GstPlayKbFunc key_func, gpointer user_data)
|
||||
{
|
||||
GST_FIXME ("Keyboard handling for this OS needs to be implemented");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
#endif /* !G_OS_UNIX */
|
35
playback/player/gst-play/gst-play-kb.h
Normal file
35
playback/player/gst-play/gst-play-kb.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
/* GStreamer command line playback testing utility - keyboard handling helpers
|
||||
*
|
||||
* Copyright (C) 2013 Tim-Philipp Müller <tim centricular net>
|
||||
* Copyright (C) 2013 Centricular Ltd
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
#ifndef __GST_PLAY_KB_INCLUDED__
|
||||
#define __GST_PLAY_KB_INCLUDED__
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#define GST_PLAY_KB_ARROW_UP "\033[A"
|
||||
#define GST_PLAY_KB_ARROW_DOWN "\033[B"
|
||||
#define GST_PLAY_KB_ARROW_RIGHT "\033[C"
|
||||
#define GST_PLAY_KB_ARROW_LEFT "\033[D"
|
||||
|
||||
typedef void (*GstPlayKbFunc) (const gchar * kb_input, gpointer user_data);
|
||||
|
||||
gboolean gst_play_kb_set_key_handler (GstPlayKbFunc kb_func, gpointer user_data);
|
||||
|
||||
#endif /* __GST_PLAY_KB_INCLUDED__ */
|
514
playback/player/gst-play/gst-play.c
Normal file
514
playback/player/gst-play/gst-play.c
Normal file
|
@ -0,0 +1,514 @@
|
|||
/* GStreamer command line playback testing utility
|
||||
*
|
||||
* Copyright (C) 2013-2014 Tim-Philipp Müller <tim centricular net>
|
||||
* Copyright (C) 2013 Collabora Ltd.
|
||||
* Copyright (C) 2014 Sebastian Dröge <sebastian@centricular.com>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include <locale.h>
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "gst-play-kb.h"
|
||||
#include "gstplayer.h"
|
||||
|
||||
#define VOLUME_STEPS 20
|
||||
|
||||
GST_DEBUG_CATEGORY (play_debug);
|
||||
#define GST_CAT_DEFAULT play_debug
|
||||
|
||||
typedef struct
|
||||
{
|
||||
gchar **uris;
|
||||
guint num_uris;
|
||||
gint cur_idx;
|
||||
|
||||
GstPlayer *player;
|
||||
GstState desired_state;
|
||||
|
||||
GMainLoop *loop;
|
||||
} GstPlay;
|
||||
|
||||
static gboolean play_next (GstPlay * play);
|
||||
static gboolean play_prev (GstPlay * play);
|
||||
static void play_reset (GstPlay * play);
|
||||
static void play_set_relative_volume (GstPlay * play, gdouble volume_step);
|
||||
|
||||
static void
|
||||
end_of_stream_cb (GstPlayer * player, GstPlay * play)
|
||||
{
|
||||
g_print ("\n");
|
||||
/* and switch to next item in list */
|
||||
if (!play_next (play)) {
|
||||
g_print ("Reached end of play list.\n");
|
||||
g_main_loop_quit (play->loop);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
error_cb (GstPlayer * player, GError * err, GstPlay * play)
|
||||
{
|
||||
g_printerr ("ERROR %s for %s\n", err->message, play->uris[play->cur_idx]);
|
||||
|
||||
/* try next item in list then */
|
||||
if (!play_next (play)) {
|
||||
g_print ("Reached end of play list.\n");
|
||||
g_main_loop_quit (play->loop);
|
||||
}
|
||||
}
|
||||
|
||||
static gboolean
|
||||
position_updated_cb (GstPlayer * player, GstClockTime pos, GstPlay * play)
|
||||
{
|
||||
GstClockTime dur = -1;
|
||||
gchar status[64] = { 0, };
|
||||
|
||||
g_object_get (play->player, "duration", &dur, NULL);
|
||||
|
||||
if (play->desired_state == GST_STATE_PAUSED)
|
||||
g_snprintf (status, sizeof (status), "Paused");
|
||||
else
|
||||
memset (status, ' ', sizeof (status) - 1);
|
||||
|
||||
if (pos >= 0 && dur > 0) {
|
||||
gchar dstr[32], pstr[32];
|
||||
|
||||
/* FIXME: pretty print in nicer format */
|
||||
g_snprintf (pstr, 32, "%" GST_TIME_FORMAT, GST_TIME_ARGS (pos));
|
||||
pstr[9] = '\0';
|
||||
g_snprintf (dstr, 32, "%" GST_TIME_FORMAT, GST_TIME_ARGS (dur));
|
||||
dstr[9] = '\0';
|
||||
g_print ("%s / %s %s\r", pstr, dstr, status);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static GstPlay *
|
||||
play_new (gchar ** uris, gdouble initial_volume)
|
||||
{
|
||||
GstPlay *play;
|
||||
|
||||
play = g_new0 (GstPlay, 1);
|
||||
|
||||
play->uris = uris;
|
||||
play->num_uris = g_strv_length (uris);
|
||||
play->cur_idx = -1;
|
||||
|
||||
play->player = gst_player_new (TRUE);
|
||||
|
||||
g_signal_connect (play->player, "position-updated",
|
||||
G_CALLBACK (position_updated_cb), play);
|
||||
g_signal_connect (play->player, "end-of-stream",
|
||||
G_CALLBACK (end_of_stream_cb), play);
|
||||
g_signal_connect (play->player, "error", G_CALLBACK (error_cb), play);
|
||||
|
||||
play->loop = g_main_loop_new (NULL, FALSE);
|
||||
play->desired_state = GST_STATE_PLAYING;
|
||||
|
||||
play_set_relative_volume (play, initial_volume - 1.0);
|
||||
|
||||
return play;
|
||||
}
|
||||
|
||||
static void
|
||||
play_free (GstPlay * play)
|
||||
{
|
||||
play_reset (play);
|
||||
|
||||
g_object_unref (play->player);
|
||||
|
||||
g_main_loop_unref (play->loop);
|
||||
|
||||
g_strfreev (play->uris);
|
||||
g_free (play);
|
||||
}
|
||||
|
||||
/* reset for new file/stream */
|
||||
static void
|
||||
play_reset (GstPlay * play)
|
||||
{
|
||||
}
|
||||
|
||||
static void
|
||||
play_set_relative_volume (GstPlay * play, gdouble volume_step)
|
||||
{
|
||||
gdouble volume;
|
||||
|
||||
g_object_get (play->player, "volume", &volume, NULL);
|
||||
volume = round ((volume + volume_step) * VOLUME_STEPS) / VOLUME_STEPS;
|
||||
volume = CLAMP (volume, 0.0, 10.0);
|
||||
|
||||
g_object_set (play->player, "volume", volume, NULL);
|
||||
|
||||
g_print ("Volume: %.0f%% \n", volume * 100);
|
||||
}
|
||||
|
||||
static gchar *
|
||||
play_uri_get_display_name (GstPlay * play, const gchar * uri)
|
||||
{
|
||||
gchar *loc;
|
||||
|
||||
if (gst_uri_has_protocol (uri, "file")) {
|
||||
loc = g_filename_from_uri (uri, NULL, NULL);
|
||||
} else if (gst_uri_has_protocol (uri, "pushfile")) {
|
||||
loc = g_filename_from_uri (uri + 4, NULL, NULL);
|
||||
} else {
|
||||
loc = g_strdup (uri);
|
||||
}
|
||||
|
||||
/* Maybe additionally use glib's filename to display name function */
|
||||
return loc;
|
||||
}
|
||||
|
||||
static void
|
||||
play_uri (GstPlay * play, const gchar * next_uri)
|
||||
{
|
||||
gchar *loc;
|
||||
|
||||
play_reset (play);
|
||||
|
||||
loc = play_uri_get_display_name (play, next_uri);
|
||||
g_print ("Now playing %s\n", loc);
|
||||
g_free (loc);
|
||||
|
||||
g_object_set (play->player, "uri", next_uri, NULL);
|
||||
gst_player_play (play->player);
|
||||
}
|
||||
|
||||
/* returns FALSE if we have reached the end of the playlist */
|
||||
static gboolean
|
||||
play_next (GstPlay * play)
|
||||
{
|
||||
if ((play->cur_idx + 1) >= play->num_uris)
|
||||
return FALSE;
|
||||
|
||||
play_uri (play, play->uris[++play->cur_idx]);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* returns FALSE if we have reached the beginning of the playlist */
|
||||
static gboolean
|
||||
play_prev (GstPlay * play)
|
||||
{
|
||||
if (play->cur_idx == 0 || play->num_uris <= 1)
|
||||
return FALSE;
|
||||
|
||||
play_uri (play, play->uris[--play->cur_idx]);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
do_play (GstPlay * play)
|
||||
{
|
||||
gint i;
|
||||
|
||||
/* dump playlist */
|
||||
for (i = 0; i < play->num_uris; ++i)
|
||||
GST_INFO ("%4u : %s", i, play->uris[i]);
|
||||
|
||||
if (!play_next (play))
|
||||
return;
|
||||
|
||||
g_main_loop_run (play->loop);
|
||||
}
|
||||
|
||||
static void
|
||||
add_to_playlist (GPtrArray * playlist, const gchar * filename)
|
||||
{
|
||||
GDir *dir;
|
||||
gchar *uri;
|
||||
|
||||
if (gst_uri_is_valid (filename)) {
|
||||
g_ptr_array_add (playlist, g_strdup (filename));
|
||||
return;
|
||||
}
|
||||
|
||||
if ((dir = g_dir_open (filename, 0, NULL))) {
|
||||
const gchar *entry;
|
||||
|
||||
/* FIXME: sort entries for each directory? */
|
||||
while ((entry = g_dir_read_name (dir))) {
|
||||
gchar *path;
|
||||
|
||||
path = g_strconcat (filename, G_DIR_SEPARATOR_S, entry, NULL);
|
||||
add_to_playlist (playlist, path);
|
||||
g_free (path);
|
||||
}
|
||||
|
||||
g_dir_close (dir);
|
||||
return;
|
||||
}
|
||||
|
||||
uri = gst_filename_to_uri (filename, NULL);
|
||||
if (uri != NULL)
|
||||
g_ptr_array_add (playlist, uri);
|
||||
else
|
||||
g_warning ("Could not make URI out of filename '%s'", filename);
|
||||
}
|
||||
|
||||
static void
|
||||
shuffle_uris (gchar ** uris, guint num)
|
||||
{
|
||||
gchar *tmp;
|
||||
guint i, j;
|
||||
|
||||
if (num < 2)
|
||||
return;
|
||||
|
||||
for (i = 0; i < num; i++) {
|
||||
/* gets equally distributed random number in 0..num-1 [0;num[ */
|
||||
j = g_random_int_range (0, num);
|
||||
tmp = uris[j];
|
||||
uris[j] = uris[i];
|
||||
uris[i] = tmp;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
restore_terminal (void)
|
||||
{
|
||||
gst_play_kb_set_key_handler (NULL, NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
toggle_paused (GstPlay * play)
|
||||
{
|
||||
if (play->desired_state == GST_STATE_PLAYING)
|
||||
play->desired_state = GST_STATE_PAUSED;
|
||||
else
|
||||
play->desired_state = GST_STATE_PLAYING;
|
||||
|
||||
if (play->desired_state == GST_STATE_PLAYING)
|
||||
gst_player_play (play->player);
|
||||
else
|
||||
gst_player_pause (play->player);
|
||||
}
|
||||
|
||||
static void
|
||||
relative_seek (GstPlay * play, gdouble percent)
|
||||
{
|
||||
gint64 dur = -1, pos = -1;
|
||||
|
||||
g_return_if_fail (percent >= -1.0 && percent <= 1.0);
|
||||
|
||||
g_object_get (play->player, "position", &pos, "duration", &dur, NULL);
|
||||
|
||||
if (dur <= 0)
|
||||
goto seek_failed;
|
||||
|
||||
pos = pos + dur * percent;
|
||||
if (pos > dur) {
|
||||
if (!play_next (play)) {
|
||||
g_print ("\nReached end of play list.\n");
|
||||
g_main_loop_quit (play->loop);
|
||||
}
|
||||
} else {
|
||||
if (pos < 0)
|
||||
pos = 0;
|
||||
gst_player_seek (play->player, pos);
|
||||
}
|
||||
|
||||
return;
|
||||
|
||||
seek_failed:
|
||||
{
|
||||
g_print ("\nCould not seek.\n");
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
keyboard_cb (const gchar * key_input, gpointer user_data)
|
||||
{
|
||||
GstPlay *play = (GstPlay *) user_data;
|
||||
|
||||
switch (g_ascii_tolower (key_input[0])) {
|
||||
case ' ':
|
||||
toggle_paused (play);
|
||||
break;
|
||||
case 'q':
|
||||
case 'Q':
|
||||
g_main_loop_quit (play->loop);
|
||||
break;
|
||||
case '>':
|
||||
if (!play_next (play)) {
|
||||
g_print ("\nReached end of play list.\n");
|
||||
g_main_loop_quit (play->loop);
|
||||
}
|
||||
break;
|
||||
case '<':
|
||||
play_prev (play);
|
||||
break;
|
||||
case 27: /* ESC */
|
||||
if (key_input[1] == '\0') {
|
||||
g_main_loop_quit (play->loop);
|
||||
break;
|
||||
}
|
||||
/* fall through */
|
||||
default:
|
||||
if (strcmp (key_input, GST_PLAY_KB_ARROW_RIGHT) == 0) {
|
||||
relative_seek (play, +0.08);
|
||||
} else if (strcmp (key_input, GST_PLAY_KB_ARROW_LEFT) == 0) {
|
||||
relative_seek (play, -0.01);
|
||||
} else if (strcmp (key_input, GST_PLAY_KB_ARROW_UP) == 0) {
|
||||
play_set_relative_volume (play, +1.0 / VOLUME_STEPS);
|
||||
} else if (strcmp (key_input, GST_PLAY_KB_ARROW_DOWN) == 0) {
|
||||
play_set_relative_volume (play, -1.0 / VOLUME_STEPS);
|
||||
} else {
|
||||
GST_INFO ("keyboard input:");
|
||||
for (; *key_input != '\0'; ++key_input)
|
||||
GST_INFO (" code %3d", *key_input);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
int
|
||||
main (int argc, char **argv)
|
||||
{
|
||||
GstPlay *play;
|
||||
GPtrArray *playlist;
|
||||
gboolean print_version = FALSE;
|
||||
gboolean interactive = FALSE; /* FIXME: maybe enable by default? */
|
||||
gboolean shuffle = FALSE;
|
||||
gdouble volume = 1.0;
|
||||
gchar **filenames = NULL;
|
||||
gchar **uris;
|
||||
guint num, i;
|
||||
GError *err = NULL;
|
||||
GOptionContext *ctx;
|
||||
gchar *playlist_file = NULL;
|
||||
GOptionEntry options[] = {
|
||||
{"version", 0, 0, G_OPTION_ARG_NONE, &print_version,
|
||||
"Print version information and exit", NULL},
|
||||
{"shuffle", 0, 0, G_OPTION_ARG_NONE, &shuffle,
|
||||
"Shuffle playlist", NULL},
|
||||
{"interactive", 0, 0, G_OPTION_ARG_NONE, &interactive,
|
||||
"Interactive control via keyboard", NULL},
|
||||
{"volume", 0, 0, G_OPTION_ARG_DOUBLE, &volume,
|
||||
"Volume", NULL},
|
||||
{"playlist", 0, 0, G_OPTION_ARG_FILENAME, &playlist_file,
|
||||
"Playlist file containing input media files", NULL},
|
||||
{G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &filenames, NULL},
|
||||
{NULL}
|
||||
};
|
||||
|
||||
g_set_prgname ("gst-play");
|
||||
|
||||
ctx = g_option_context_new ("FILE1|URI1 [FILE2|URI2] [FILE3|URI3] ...");
|
||||
g_option_context_add_main_entries (ctx, options, NULL);
|
||||
g_option_context_add_group (ctx, gst_init_get_option_group ());
|
||||
if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
|
||||
g_print ("Error initializing: %s\n", GST_STR_NULL (err->message));
|
||||
return 1;
|
||||
}
|
||||
g_option_context_free (ctx);
|
||||
|
||||
if (print_version) {
|
||||
gchar *version_str;
|
||||
|
||||
version_str = gst_version_string ();
|
||||
g_print ("%s version %s\n", g_get_prgname (), "1.0");
|
||||
g_print ("%s\n", version_str);
|
||||
g_free (version_str);
|
||||
|
||||
g_free (playlist_file);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
playlist = g_ptr_array_new ();
|
||||
|
||||
if (playlist_file != NULL) {
|
||||
gchar *playlist_contents = NULL;
|
||||
gchar **lines = NULL;
|
||||
|
||||
if (g_file_get_contents (playlist_file, &playlist_contents, NULL, &err)) {
|
||||
lines = g_strsplit (playlist_contents, "\n", 0);
|
||||
num = g_strv_length (lines);
|
||||
|
||||
for (i = 0; i < num; i++) {
|
||||
if (lines[i][0] != '\0') {
|
||||
GST_LOG ("Playlist[%d]: %s", i + 1, lines[i]);
|
||||
add_to_playlist (playlist, lines[i]);
|
||||
}
|
||||
}
|
||||
g_strfreev (lines);
|
||||
g_free (playlist_contents);
|
||||
} else {
|
||||
g_printerr ("Could not read playlist: %s\n", err->message);
|
||||
g_clear_error (&err);
|
||||
}
|
||||
g_free (playlist_file);
|
||||
playlist_file = NULL;
|
||||
}
|
||||
|
||||
if (playlist->len == 0 && (filenames == NULL || *filenames == NULL)) {
|
||||
g_printerr ("Usage: %s FILE1|URI1 [FILE2|URI2] [FILE3|URI3] ...",
|
||||
"gst-play");
|
||||
g_printerr ("\n\n"),
|
||||
g_printerr ("%s\n\n",
|
||||
"You must provide at least one filename or URI to play.");
|
||||
/* No input provided. Free array */
|
||||
g_ptr_array_free (playlist, TRUE);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* fill playlist */
|
||||
if (filenames != NULL && *filenames != NULL) {
|
||||
num = g_strv_length (filenames);
|
||||
for (i = 0; i < num; ++i) {
|
||||
GST_LOG ("command line argument: %s", filenames[i]);
|
||||
add_to_playlist (playlist, filenames[i]);
|
||||
}
|
||||
g_strfreev (filenames);
|
||||
}
|
||||
|
||||
num = playlist->len;
|
||||
g_ptr_array_add (playlist, NULL);
|
||||
|
||||
uris = (gchar **) g_ptr_array_free (playlist, FALSE);
|
||||
|
||||
if (shuffle)
|
||||
shuffle_uris (uris, num);
|
||||
|
||||
/* prepare */
|
||||
play = play_new (uris, volume);
|
||||
|
||||
if (interactive) {
|
||||
if (gst_play_kb_set_key_handler (keyboard_cb, play)) {
|
||||
atexit (restore_terminal);
|
||||
} else {
|
||||
g_print ("Interactive keyboard handling in terminal not available.\n");
|
||||
}
|
||||
}
|
||||
|
||||
/* play */
|
||||
do_play (play);
|
||||
|
||||
/* clean up */
|
||||
play_free (play);
|
||||
|
||||
g_print ("\n");
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue