gmyth-stream/gmemcoder/src/main.c
author melunko
Tue Apr 24 19:45:27 2007 +0100 (2007-04-24)
branchtrunk
changeset 592 0f77fcb97269
parent 586 bd0ad44171e7
child 600 7da2a5e32fa6
permissions -rw-r--r--
[svn r598] changed ScheduleInfo attribute from record_id to schedule_id
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@588
    25
static gchar*   output_element  = NULL;
renatofilho@588
    26
static gchar*   output_opts     = NULL;
renatofilho@586
    27
renatofilho@586
    28
static void
renatofilho@586
    29
_mencoder_ready_cb (GMencoder *mencoder, gpointer data)
renatofilho@586
    30
{
renatofilho@586
    31
    g_mencoder_play_stream (mencoder);
renatofilho@586
    32
}
renatofilho@586
    33
renatofilho@586
    34
static void
renatofilho@586
    35
_mencoder_eos_cb (GMencoder *mencoder, gpointer data)
renatofilho@586
    36
{
renatofilho@586
    37
    g_print ("EOS\n");
renatofilho@586
    38
    g_main_loop_quit ((GMainLoop *) data);
renatofilho@586
    39
}
renatofilho@586
    40
renatofilho@586
    41
static void
renatofilho@586
    42
_mencoder_error_cb (GMencoder *mencoder, const gchar* msg, gpointer data)
renatofilho@586
    43
{
renatofilho@586
    44
    g_print ("Error: %s\n", msg);
renatofilho@586
    45
    g_main_loop_quit ((GMainLoop *) data);
renatofilho@586
    46
}
renatofilho@586
    47
renatofilho@586
    48
static gboolean
renatofilho@586
    49
_io_channel_cb (GIOChannel *ch,
renatofilho@586
    50
                GIOCondition condition,
renatofilho@586
    51
                gpointer data)
renatofilho@586
    52
{
renatofilho@586
    53
    GString *cmd = g_string_new ("");
renatofilho@586
    54
    g_io_channel_read_line_string (ch, cmd, NULL, NULL);
renatofilho@586
    55
renatofilho@586
    56
    if (strcmp (cmd->str, "PLAY\n") == 0) {
renatofilho@586
    57
        g_mencoder_play_stream (G_MENCODER (data));
renatofilho@586
    58
    } else if (strcmp (cmd->str, "PAUSE\n") == 0) {
renatofilho@586
    59
        g_mencoder_pause_stream (G_MENCODER (data));
renatofilho@586
    60
    } else if (strcmp (cmd->str, "STOP\n") == 0) {
renatofilho@586
    61
        g_mencoder_close_stream (G_MENCODER (data));
renatofilho@586
    62
    } else if (strcmp (cmd->str, "QUIT\n") == 0) {
renatofilho@586
    63
        g_mencoder_close_stream (G_MENCODER (data));
renatofilho@586
    64
        g_main_loop_quit (mainloop);
renatofilho@586
    65
    }
renatofilho@586
    66
    g_string_free (cmd, TRUE);
renatofilho@586
    67
    return TRUE;
renatofilho@586
    68
}
renatofilho@586
    69
renatofilho@586
    70
int 
renatofilho@586
    71
main (int argc, char** argv)
renatofilho@586
    72
{
renatofilho@586
    73
    GMencoder *coder;
renatofilho@586
    74
    GIOChannel *ch;
renatofilho@588
    75
    gchar **oopts;
renatofilho@588
    76
    gchar **vopts;
renatofilho@588
    77
    gchar **aopts;
renatofilho@588
    78
renatofilho@588
    79
    GOptionContext *context;
renatofilho@588
    80
    static const GOptionEntry options []  = {
renatofilho@588
    81
        {"input-file",    'i', 0, G_OPTION_ARG_STRING,          &input_file,    "Input File", NULL},
renatofilho@588
    82
        {"video-encode",    0, 0, G_OPTION_ARG_STRING,          &video_encode,  "GstElementName for used to video encode", NULL},
renatofilho@588
    83
        {"video-opts",      0, 0, G_OPTION_ARG_STRING,          &video_opts,    "Properties to set on video element", NULL},
renatofilho@588
    84
        {"video-fps",       0, 0, G_OPTION_ARG_DOUBLE,          &video_fps,     "Video FPS", NULL},
renatofilho@588
    85
        {"video-rate",      0, 0, G_OPTION_ARG_INT,             &video_rate,    "Video rate", NULL},
renatofilho@588
    86
        {"video-width",     0, 0, G_OPTION_ARG_INT,             &video_width,   "Video width", NULL},
renatofilho@588
    87
        {"video-height",    0, 0, G_OPTION_ARG_INT,             &video_height,  "Video height", NULL},
renatofilho@588
    88
        {"audio-encode",    0, 0, G_OPTION_ARG_STRING,          &audio_encode,  "GstElementName for use to audio encode", NULL},
renatofilho@588
    89
        {"audio-opts",      0, 0, G_OPTION_ARG_STRING,          &audio_opts,    "Properties to set on audio element", NULL},
renatofilho@588
    90
        {"audio-rate",      0, 0, G_OPTION_ARG_INT,             &audio_rate,    "Audio rate", NULL},
renatofilho@588
    91
        {"output-element",  0, 0, G_OPTION_ARG_STRING,          &output_element,"GstElementName for use to output", NULL},
renatofilho@588
    92
        {"output-opts",     0, 0, G_OPTION_ARG_STRING,          &output_opts,   "Properties to set on output element", NULL},
renatofilho@588
    93
        { NULL }
renatofilho@588
    94
    };
renatofilho@586
    95
renatofilho@586
    96
	g_type_init ();
renatofilho@588
    97
    g_thread_init (NULL);
renatofilho@588
    98
renatofilho@588
    99
	//g_set_prgname ("gmemcoder");
renatofilho@588
   100
    context = g_option_context_new (NULL);
renatofilho@588
   101
    g_option_context_set_help_enabled (context, TRUE);
renatofilho@588
   102
    g_option_context_add_main_entries (context, options, NULL);
renatofilho@588
   103
    g_option_context_add_group (context, gst_init_get_option_group ());
renatofilho@588
   104
    g_option_context_parse (context, &argc, &argv, NULL);
renatofilho@588
   105
renatofilho@586
   106
	gst_init (&argc, &argv);
renatofilho@586
   107
renatofilho@588
   108
    if (output_element == NULL) {
renatofilho@588
   109
        g_print ("You need specify output-element name.\nTry --help for more information.\n");
renatofilho@588
   110
        return 1; 
renatofilho@588
   111
    }
renatofilho@588
   112
renatofilho@588
   113
    if (input_file == NULL) {
renatofilho@588
   114
        g_print ("You need specify input file\nTry --help for more information.\n");
renatofilho@588
   115
    }
renatofilho@586
   116
renatofilho@586
   117
    coder = g_mencoder_new ();
renatofilho@586
   118
    ch = g_io_channel_unix_new (0);
renatofilho@586
   119
renatofilho@588
   120
    aopts = g_strsplit (audio_opts, ",", 0);
renatofilho@588
   121
    vopts = g_strsplit (video_opts, ",", 0);
renatofilho@588
   122
    oopts = g_strsplit (output_opts, ",", 0);
renatofilho@588
   123
renatofilho@588
   124
    g_mencoder_setup_stream (coder, 
renatofilho@588
   125
            input_file, 
renatofilho@588
   126
            video_encode, vopts, video_fps, video_rate, video_width, video_height,
renatofilho@588
   127
            audio_encode, aopts, audio_rate, 
renatofilho@588
   128
            output_element, oopts);
renatofilho@588
   129
renatofilho@588
   130
    g_strfreev (aopts);
renatofilho@588
   131
    g_strfreev (vopts);
renatofilho@588
   132
    g_strfreev (oopts);
renatofilho@586
   133
renatofilho@586
   134
	mainloop = g_main_loop_new (NULL, FALSE);
renatofilho@586
   135
    g_io_add_watch (ch, G_IO_IN, _io_channel_cb, coder);    
renatofilho@586
   136
renatofilho@586
   137
renatofilho@586
   138
    g_signal_connect (G_OBJECT (coder),
renatofilho@586
   139
                        "ready",
renatofilho@586
   140
                        G_CALLBACK (_mencoder_ready_cb),
renatofilho@586
   141
                        NULL);
renatofilho@586
   142
renatofilho@586
   143
    g_signal_connect (G_OBJECT (coder),
renatofilho@586
   144
                        "eos",
renatofilho@586
   145
                        G_CALLBACK (_mencoder_eos_cb),
renatofilho@586
   146
                        mainloop);
renatofilho@586
   147
renatofilho@586
   148
    g_signal_connect (G_OBJECT (coder),
renatofilho@586
   149
                        "error",
renatofilho@586
   150
                        G_CALLBACK (_mencoder_error_cb),
renatofilho@586
   151
                        mainloop);
renatofilho@586
   152
renatofilho@586
   153
	g_main_loop_run (mainloop);
renatofilho@586
   154
renatofilho@586
   155
	return 0;
renatofilho@586
   156
}