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