1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
/* libquvi
* Copyright (C) 2013 Toni Gundogdu <legatvs@gmail.com>
*
* This file is part of libquvi <http://quvi.sourceforge.net/>.
*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public
* License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General
* Public License along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <locale.h>
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include <quvi.h>
#include "examples.h"
struct _opts_s
{
gboolean format_subrip;
gboolean autoproxy;
gboolean verbose;
gchar *language;
gchar **url;
};
static struct _opts_s opts;
static const GOptionEntry entries[] =
{
{
"format-subrip", 's', 0, G_OPTION_ARG_NONE, &opts.format_subrip,
"Retrieve selected language, convert it to SubRip and dump to stdout",
NULL
},
{
"language", 'l', 0, G_OPTION_ARG_STRING, &opts.language,
"Select subtitle language by ID, or a comma-separated list of IDs", "ID"
},
{
"autoproxy", 'a', 0, G_OPTION_ARG_NONE, &opts.autoproxy,
"Enable the autoproxy feature", NULL
},
{
"verbose", 'v', 0, G_OPTION_ARG_NONE, &opts.verbose,
"Verbose libcurl output", NULL
},
{
G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_STRING_ARRAY, &opts.url, "URL"
},
{NULL, 0, 0, 0, NULL, NULL, NULL}
};
static gint opts_new(gint argc, gchar **argv)
{
GOptionContext *c;
GError *e;
gint r;
c = g_option_context_new("URL");
r = EXIT_SUCCESS;
e = NULL;
g_option_context_add_main_entries(c, entries, NULL);
g_option_context_set_help_enabled(c, TRUE);
if (g_option_context_parse(c, &argc, &argv, &e) == FALSE)
{
g_printerr("error: %s\n", e->message);
r = EXIT_FAILURE;
g_error_free(e);
}
g_option_context_free(c);
if (r == EXIT_SUCCESS && opts.url == NULL)
{
g_printerr("error: no input URL\n");
return (EXIT_FAILURE);
}
return (r);
}
static void dump_language(const quvi_subtitle_lang_t l)
{
gchar *translated, *original, *code, *id, *url;
quvi_subtitle_lang_get(l, QUVI_SUBTITLE_LANG_PROPERTY_TRANSLATED,
&translated);
quvi_subtitle_lang_get(l, QUVI_SUBTITLE_LANG_PROPERTY_ORIGINAL,
&original);
quvi_subtitle_lang_get(l, QUVI_SUBTITLE_LANG_PROPERTY_CODE, &code);
quvi_subtitle_lang_get(l, QUVI_SUBTITLE_LANG_PROPERTY_URL, &url);
quvi_subtitle_lang_get(l, QUVI_SUBTITLE_LANG_PROPERTY_ID, &id);
g_printerr(" lang: translated=%s, original=%s, code=%s, id=%s\n"
" url=%s\n", translated, original, code, id, url);
}
static void dump_languages(const quvi_subtitle_type_t t)
{
quvi_subtitle_lang_t l;
while ( (l = quvi_subtitle_type_next(t)) != NULL)
dump_language(l);
}
static void dump_subtitle(quvi_subtitle_type_t t)
{
gdouble type, format;
quvi_subtitle_type_get(t, QUVI_SUBTITLE_TYPE_PROPERTY_FORMAT, &format);
quvi_subtitle_type_get(t, QUVI_SUBTITLE_TYPE_PROPERTY_TYPE, &type);
g_printerr("[%s] subtitle: format=%g, type=%g\n", __func__, format, type);
}
static void dump_subtitles()
{
quvi_subtitle_type_t t;
gint i;
i = 0;
while ( (t = quvi_subtitle_type_next(qsub)) != NULL)
{
dump_subtitle(t);
dump_languages(t);
++i;
}
if (i == 0)
g_printerr("subtitles: none found\n");
}
static void opts_free()
{
g_free(opts.language);
g_strfreev(opts.url);
memset(&opts, 0, sizeof(struct _opts_s));
}
typedef quvi_callback_status qcs;
gint main(gint argc, gchar **argv)
{
quvi_subtitle_export_t e;
quvi_subtitle_lang_t l;
gint r, i;
memset(&opts, 0, sizeof(struct _opts_s));
setlocale(LC_ALL, "");
r = opts_new(argc, argv);
if (r != EXIT_SUCCESS)
return (r);
q = quvi_new();
examples_exit_if_error();
if (opts.autoproxy == TRUE)
examples_enable_autoproxy();
if (opts.verbose == TRUE)
examples_enable_verbose();
if (opts.format_subrip == TRUE && opts.language == NULL)
{
g_printerr("error: --format-subrip requires --language\n");
examples_cleanup();
opts_free();
return (EXIT_FAILURE);
}
quvi_set(q, QUVI_OPTION_CALLBACK_STATUS, (qcs) examples_status);
for (r=EXIT_SUCCESS, i=0; (opts.url[i] != NULL && r == EXIT_SUCCESS); ++i)
{
qsub = quvi_subtitle_new(q, opts.url[i]);
examples_exit_if_error();
if (opts.language != NULL)
{
l = quvi_subtitle_select(qsub, opts.language);
examples_exit_if_error();
dump_language(l);
if (opts.format_subrip == TRUE)
{
e = quvi_subtitle_export_new(l, "srt");
examples_exit_if_error();
g_print("%s", quvi_subtitle_export_data(e));
quvi_subtitle_export_free(e);
}
}
else
dump_subtitles();
}
examples_cleanup();
opts_free();
return (r);
}
/* vim: set ts=2 sw=2 tw=72 expandtab: */
|