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