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