gmyth-stream/gmemcoder/src/main.c
author renatofilho
Fri May 18 19:36:49 2007 +0100 (2007-05-18)
branchtrunk
changeset 691 726550e48c21
parent 678 89bdaa9e72bf
child 748 bf9dac4bdc5d
permissions -rw-r--r--
[svn r697] removed debug messages
renatofilho@586
     1
#include <sys/stat.h>
renatofilho@586
     2
#include <fcntl.h>
renatofilho@586
     3
#include <unistd.h>
renatofilho@586
     4
#include <string.h>
renatofilho@586
     5
renatofilho@586
     6
#include <gst/gst.h>
renatofilho@586
     7
#include <glib.h> 
renatofilho@586
     8
renatofilho@588
     9
#include "gmencoder.h"
renatofilho@586
    10
renatofilho@588
    11
#define FILE_OUT  1
renatofilho@586
    12
renatofilho@586
    13
static GMainLoop *mainloop = NULL;
renatofilho@588
    14
/* Options */
renatofilho@588
    15
static gchar*   input_file      = NULL;
renatofilho@588
    16
static gchar*   video_encode    = NULL;
renatofilho@588
    17
static gchar*   video_opts      = NULL;
renatofilho@588
    18
static gdouble  video_fps       = 0.0;
renatofilho@588
    19
static gint     video_rate      = 0;
renatofilho@588
    20
static gint     video_width     = 0;
renatofilho@588
    21
static gint     video_height    = 0;
renatofilho@588
    22
static gchar*   audio_encode    = NULL;
renatofilho@588
    23
static gchar*   audio_opts      = NULL;
renatofilho@588
    24
static double   audio_rate      = 0.0;
renatofilho@600
    25
static gchar*   mux_name        = NULL;
renatofilho@600
    26
static gchar*   output_uri      = NULL;
renatofilho@586
    27
renatofilho@586
    28
renatofilho@678
    29
renatofilho@678
    30
static gboolean
renatofilho@678
    31
_quit (gpointer data)
renatofilho@678
    32
{
renatofilho@678
    33
	g_object_unref (data);
renatofilho@678
    34
	g_main_loop_quit (mainloop);
renatofilho@678
    35
	return FALSE;
renatofilho@678
    36
}
renatofilho@678
    37
renatofilho@586
    38
static void
renatofilho@586
    39
_mencoder_eos_cb (GMencoder *mencoder, gpointer data)
renatofilho@678
    40
{		
renatofilho@586
    41
    g_print ("EOS\n");
renatofilho@678
    42
	g_idle_add (_quit, mencoder);
renatofilho@586
    43
}
renatofilho@586
    44
renatofilho@678
    45
renatofilho@586
    46
static void
renatofilho@586
    47
_mencoder_error_cb (GMencoder *mencoder, const gchar* msg, gpointer data)
renatofilho@586
    48
{
renatofilho@586
    49
    g_print ("Error: %s\n", msg);
renatofilho@678
    50
	g_idle_add (_quit, mencoder);
renatofilho@586
    51
}
renatofilho@586
    52
renatofilho@586
    53
static gboolean
renatofilho@586
    54
_io_channel_cb (GIOChannel *ch,
renatofilho@586
    55
                GIOCondition condition,
renatofilho@586
    56
                gpointer data)
renatofilho@586
    57
{
renatofilho@586
    58
    GString *cmd = g_string_new ("");
renatofilho@586
    59
    g_io_channel_read_line_string (ch, cmd, NULL, NULL);
renatofilho@586
    60
renatofilho@586
    61
    if (strcmp (cmd->str, "PLAY\n") == 0) {
renatofilho@586
    62
        g_mencoder_play_stream (G_MENCODER (data));
renatofilho@586
    63
    } else if (strcmp (cmd->str, "PAUSE\n") == 0) {
renatofilho@586
    64
        g_mencoder_pause_stream (G_MENCODER (data));
renatofilho@586
    65
    } else if (strcmp (cmd->str, "STOP\n") == 0) {
renatofilho@586
    66
        g_mencoder_close_stream (G_MENCODER (data));
renatofilho@586
    67
    } else if (strcmp (cmd->str, "QUIT\n") == 0) {
renatofilho@586
    68
        g_mencoder_close_stream (G_MENCODER (data));
renatofilho@586
    69
        g_main_loop_quit (mainloop);
renatofilho@586
    70
    }
renatofilho@586
    71
    g_string_free (cmd, TRUE);
renatofilho@586
    72
    return TRUE;
renatofilho@586
    73
}
renatofilho@586
    74
renatofilho@586
    75
int 
renatofilho@586
    76
main (int argc, char** argv)
renatofilho@586
    77
{
renatofilho@600
    78
    GMencoder *coder = NULL;
renatofilho@586
    79
    GIOChannel *ch;
renatofilho@588
    80
    gchar **vopts;
renatofilho@588
    81
    gchar **aopts;
renatofilho@600
    82
    gchar **files;
renatofilho@600
    83
    gint i;
renatofilho@588
    84
renatofilho@588
    85
    GOptionContext *context;
renatofilho@588
    86
    static const GOptionEntry options []  = {
renatofilho@600
    87
        {"input-files",    'i', 0, G_OPTION_ARG_STRING,          &input_file,    "Input File", NULL},
renatofilho@588
    88
        {"video-encode",    0, 0, G_OPTION_ARG_STRING,          &video_encode,  "GstElementName for used to video encode", NULL},
renatofilho@588
    89
        {"video-opts",      0, 0, G_OPTION_ARG_STRING,          &video_opts,    "Properties to set on video element", NULL},
renatofilho@588
    90
        {"video-fps",       0, 0, G_OPTION_ARG_DOUBLE,          &video_fps,     "Video FPS", NULL},
renatofilho@588
    91
        {"video-rate",      0, 0, G_OPTION_ARG_INT,             &video_rate,    "Video rate", NULL},
renatofilho@588
    92
        {"video-width",     0, 0, G_OPTION_ARG_INT,             &video_width,   "Video width", NULL},
renatofilho@588
    93
        {"video-height",    0, 0, G_OPTION_ARG_INT,             &video_height,  "Video height", NULL},
renatofilho@588
    94
        {"audio-encode",    0, 0, G_OPTION_ARG_STRING,          &audio_encode,  "GstElementName for use to audio encode", NULL},
renatofilho@588
    95
        {"audio-opts",      0, 0, G_OPTION_ARG_STRING,          &audio_opts,    "Properties to set on audio element", NULL},
renatofilho@588
    96
        {"audio-rate",      0, 0, G_OPTION_ARG_INT,             &audio_rate,    "Audio rate", NULL},
renatofilho@600
    97
        {"mux-element",     0, 0, G_OPTION_ARG_STRING,          &mux_name,      "GstElementName for use to mux file", NULL},
renatofilho@600
    98
        {"output-uri",    'o', 0, G_OPTION_ARG_STRING,          &output_uri,    "Uri to output", NULL},
renatofilho@588
    99
        { NULL }
renatofilho@588
   100
    };
renatofilho@586
   101
renatofilho@586
   102
	g_type_init ();
renatofilho@588
   103
    g_thread_init (NULL);
renatofilho@600
   104
	mainloop = g_main_loop_new (NULL, FALSE);
renatofilho@588
   105
renatofilho@600
   106
	g_set_prgname ("gmemcoder");
renatofilho@588
   107
    context = g_option_context_new (NULL);
renatofilho@588
   108
    g_option_context_set_help_enabled (context, TRUE);
renatofilho@588
   109
    g_option_context_add_main_entries (context, options, NULL);
renatofilho@588
   110
    g_option_context_add_group (context, gst_init_get_option_group ());
renatofilho@588
   111
    g_option_context_parse (context, &argc, &argv, NULL);
renatofilho@588
   112
renatofilho@586
   113
	gst_init (&argc, &argv);
renatofilho@586
   114
renatofilho@600
   115
    if (output_uri == NULL) {
renatofilho@600
   116
        g_print ("You need specify output-uri.\nTry --help for more information.\n");
renatofilho@588
   117
        return 1; 
renatofilho@588
   118
    }
renatofilho@588
   119
renatofilho@588
   120
    if (input_file == NULL) {
renatofilho@588
   121
        g_print ("You need specify input file\nTry --help for more information.\n");
renatofilho@588
   122
    }
renatofilho@586
   123
renatofilho@586
   124
    coder = g_mencoder_new ();
renatofilho@586
   125
    ch = g_io_channel_unix_new (0);
renatofilho@586
   126
renatofilho@588
   127
    aopts = g_strsplit (audio_opts, ",", 0);
renatofilho@588
   128
    vopts = g_strsplit (video_opts, ",", 0);
renatofilho@588
   129
renatofilho@588
   130
    g_mencoder_setup_stream (coder, 
renatofilho@600
   131
            mux_name,
renatofilho@588
   132
            video_encode, vopts, video_fps, video_rate, video_width, video_height,
renatofilho@588
   133
            audio_encode, aopts, audio_rate, 
renatofilho@600
   134
            output_uri);
renatofilho@588
   135
renatofilho@600
   136
    files = g_strsplit (input_file, ",", 0);
renatofilho@600
   137
    for (i=0; i < g_strv_length (files); i++) {
renatofilho@600
   138
        if (!g_mencoder_append_uri (coder, files[i])) {
renatofilho@600
   139
            g_debug ("Invalid uri: %s", files[i]);
renatofilho@600
   140
        } 
renatofilho@600
   141
    }
renatofilho@600
   142
                
renatofilho@600
   143
    g_strfreev (files);
renatofilho@588
   144
    g_strfreev (aopts);
renatofilho@588
   145
    g_strfreev (vopts);
renatofilho@586
   146
renatofilho@600
   147
renatofilho@586
   148
    g_io_add_watch (ch, G_IO_IN, _io_channel_cb, coder);    
renatofilho@586
   149
renatofilho@586
   150
    g_signal_connect (G_OBJECT (coder),
renatofilho@586
   151
                        "eos",
renatofilho@586
   152
                        G_CALLBACK (_mencoder_eos_cb),
renatofilho@586
   153
                        mainloop);
renatofilho@586
   154
renatofilho@586
   155
    g_signal_connect (G_OBJECT (coder),
renatofilho@586
   156
                        "error",
renatofilho@586
   157
                        G_CALLBACK (_mencoder_error_cb),
renatofilho@586
   158
                        mainloop);
renatofilho@586
   159
renatofilho@600
   160
    g_mencoder_play_stream (coder);
renatofilho@600
   161
renatofilho@600
   162
    g_debug ("RUNNING..");
renatofilho@586
   163
	g_main_loop_run (mainloop);
renatofilho@634
   164
	g_debug ("DONE");
renatofilho@600
   165
    g_object_unref (coder);
renatofilho@600
   166
renatofilho@586
   167
	return 0;
renatofilho@586
   168
}