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