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@757
|
84 |
gboolean ret;
|
renatofilho@588
|
85 |
|
renatofilho@754
|
86 |
GOptionContext *context;
|
renatofilho@754
|
87 |
static const GOptionEntry options[] = {
|
renatofilho@754
|
88 |
{"input-files", 'i', 0, G_OPTION_ARG_STRING, &input_file,
|
renatofilho@754
|
89 |
"Input File", NULL},
|
morphbr@748
|
90 |
|
renatofilho@754
|
91 |
{"video-encode", 0, 0, G_OPTION_ARG_STRING, &video_encode,
|
renatofilho@754
|
92 |
"GstElementName for used to video encode", NULL},
|
morphbr@748
|
93 |
|
renatofilho@754
|
94 |
{"video-opts", 0, 0, G_OPTION_ARG_STRING, &video_opts,
|
renatofilho@754
|
95 |
"Properties to set on video element", NULL},
|
morphbr@748
|
96 |
|
renatofilho@754
|
97 |
{"video-fps", 0, 0, G_OPTION_ARG_DOUBLE, &video_fps,
|
renatofilho@754
|
98 |
"Video FPS", NULL},
|
morphbr@748
|
99 |
|
renatofilho@754
|
100 |
{"video-rate", 0, 0, G_OPTION_ARG_INT, &video_rate,
|
renatofilho@754
|
101 |
"Video rate", NULL},
|
morphbr@748
|
102 |
|
renatofilho@754
|
103 |
{"video-width", 0, 0, G_OPTION_ARG_INT, &video_width,
|
renatofilho@754
|
104 |
"Video width", NULL},
|
morphbr@748
|
105 |
|
renatofilho@754
|
106 |
{"video-height", 0, 0, G_OPTION_ARG_INT, &video_height,
|
renatofilho@754
|
107 |
"Video height", NULL},
|
morphbr@748
|
108 |
|
renatofilho@754
|
109 |
{"audio-encode", 0, 0, G_OPTION_ARG_STRING, &audio_encode,
|
renatofilho@754
|
110 |
"GstElementName for use to audio encode", NULL},
|
morphbr@748
|
111 |
|
renatofilho@754
|
112 |
{"audio-opts", 0, 0, G_OPTION_ARG_STRING, &audio_opts,
|
renatofilho@754
|
113 |
"Properties to set on audio element", NULL},
|
morphbr@748
|
114 |
|
renatofilho@754
|
115 |
{"audio-rate", 0, 0, G_OPTION_ARG_INT, &audio_rate,
|
renatofilho@754
|
116 |
"Audio rate", NULL},
|
morphbr@748
|
117 |
|
renatofilho@754
|
118 |
{"mux-element", 0, 0, G_OPTION_ARG_STRING, &mux_name,
|
renatofilho@754
|
119 |
"GstElementName for use to mux file", NULL},
|
morphbr@748
|
120 |
|
renatofilho@754
|
121 |
{"output-uri", 'o', 0, G_OPTION_ARG_STRING, &output_uri,
|
renatofilho@754
|
122 |
"Uri to output", NULL},
|
morphbr@748
|
123 |
|
renatofilho@754
|
124 |
{NULL}
|
renatofilho@754
|
125 |
};
|
renatofilho@586
|
126 |
|
renatofilho@754
|
127 |
g_type_init();
|
renatofilho@754
|
128 |
g_thread_init(NULL);
|
renatofilho@754
|
129 |
mainloop = g_main_loop_new(NULL, FALSE);
|
renatofilho@588
|
130 |
|
renatofilho@754
|
131 |
g_set_prgname("gmemcoder");
|
renatofilho@754
|
132 |
context = g_option_context_new(NULL);
|
renatofilho@754
|
133 |
g_option_context_set_help_enabled(context, TRUE);
|
renatofilho@754
|
134 |
g_option_context_add_main_entries(context, options, NULL);
|
renatofilho@754
|
135 |
g_option_context_add_group(context, gst_init_get_option_group());
|
renatofilho@754
|
136 |
g_option_context_parse(context, &argc, &argv, NULL);
|
renatofilho@588
|
137 |
|
renatofilho@754
|
138 |
gst_init(&argc, &argv);
|
renatofilho@586
|
139 |
|
renatofilho@754
|
140 |
if (output_uri == NULL) {
|
renatofilho@754
|
141 |
g_print("You need to specify output-uri.\nTry --help "
|
renatofilho@754
|
142 |
"for more information.\n");
|
renatofilho@754
|
143 |
return 1;
|
renatofilho@754
|
144 |
}
|
renatofilho@588
|
145 |
|
renatofilho@754
|
146 |
if (input_file == NULL) {
|
renatofilho@754
|
147 |
g_print("You need to specify input file\nTry --help "
|
renatofilho@754
|
148 |
"for more information.\n");
|
renatofilho@754
|
149 |
}
|
renatofilho@586
|
150 |
|
renatofilho@754
|
151 |
coder = g_mencoder_new();
|
renatofilho@754
|
152 |
ch = g_io_channel_unix_new(0);
|
renatofilho@586
|
153 |
|
renatofilho@757
|
154 |
if (audio_opts != NULL)
|
renatofilho@757
|
155 |
aopts = g_strsplit(audio_opts, ",", 0);
|
renatofilho@757
|
156 |
else
|
renatofilho@757
|
157 |
aopts = NULL;
|
renatofilho@588
|
158 |
|
renatofilho@757
|
159 |
if (video_opts != NULL)
|
renatofilho@757
|
160 |
vopts = g_strsplit(video_opts, ",", 0);
|
renatofilho@757
|
161 |
else
|
renatofilho@757
|
162 |
vopts = NULL;
|
renatofilho@588
|
163 |
|
renatofilho@757
|
164 |
|
renatofilho@757
|
165 |
ret = g_mencoder_setup_stream(coder, mux_name,
|
renatofilho@757
|
166 |
video_encode, vopts, video_fps,
|
renatofilho@757
|
167 |
video_rate, video_width, video_height,
|
renatofilho@757
|
168 |
audio_encode, aopts, audio_rate, output_uri);
|
renatofilho@757
|
169 |
|
renatofilho@757
|
170 |
if (ret == TRUE) {
|
renatofilho@757
|
171 |
files = g_strsplit(input_file, ",", 0);
|
renatofilho@757
|
172 |
for (i = 0; i < g_strv_length(files); i++) {
|
renatofilho@757
|
173 |
if (!g_mencoder_append_uri(coder, files[i])) {
|
renatofilho@757
|
174 |
g_debug("Invalid uri: %s", files[i]);
|
renatofilho@757
|
175 |
}
|
renatofilho@754
|
176 |
}
|
renatofilho@757
|
177 |
g_strfreev(files);
|
renatofilho@754
|
178 |
}
|
morphbr@748
|
179 |
|
renatofilho@754
|
180 |
g_strfreev(aopts);
|
renatofilho@754
|
181 |
g_strfreev(vopts);
|
renatofilho@586
|
182 |
|
renatofilho@600
|
183 |
|
renatofilho@757
|
184 |
if (ret == TRUE) {
|
renatofilho@757
|
185 |
g_io_add_watch(ch, G_IO_IN, _io_channel_cb, coder);
|
renatofilho@757
|
186 |
g_signal_connect(G_OBJECT(coder),
|
renatofilho@757
|
187 |
"eos", G_CALLBACK(_mencoder_eos_cb), mainloop);
|
renatofilho@586
|
188 |
|
renatofilho@757
|
189 |
g_signal_connect(G_OBJECT(coder),
|
renatofilho@757
|
190 |
"error", G_CALLBACK(_mencoder_error_cb), mainloop);
|
renatofilho@586
|
191 |
|
renatofilho@757
|
192 |
g_mencoder_play_stream(coder);
|
renatofilho@757
|
193 |
g_main_loop_run(mainloop);
|
renatofilho@757
|
194 |
}
|
renatofilho@586
|
195 |
|
renatofilho@754
|
196 |
g_object_unref(coder);
|
renatofilho@754
|
197 |
return 0;
|
renatofilho@586
|
198 |
}
|