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
|
/*****************************************************************
* gmerlin - a general purpose multimedia framework and applications
*
* Copyright (c) 2001 - 2024 Members of the Gmerlin project
* http://github.com/bplaum
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
#include <config.h>
#include <time.h>
#include <stdlib.h>
#include <gtk/gtk.h>
#include <gui_gtk/gtkutils.h>
#include <gmerlin/pluginregistry.h>
#include <gmerlin/cfgctx.h>
#include <gmerlin/cmdline.h>
#include <gmerlin/iconfont.h>
#include <gmerlin/application.h>
#include "transcoder_window.h"
static void opt_p(void * data, int * argc, char *** argv, int arg)
{
FILE * out = stderr;
transcoder_window_t * win;
win = (transcoder_window_t*)data;
if(arg >= *argc)
{
fprintf(out, "Option -p requires an argument\n");
exit(-1);
}
transcoder_window_load_profile(win, (*argv)[arg]);
bg_cmdline_remove_arg(argc, argv, arg);
}
bg_cmdline_arg_t args[] =
{
{
.arg = "-p",
.help_arg = "<file>",
.help_string = "Load a profile from the given file",
.callback = opt_p,
},
{ /* End of args */ }
};
const bg_cmdline_app_data_t app_data =
{
.package = PACKAGE,
.version = VERSION,
.synopsis = TRS("[options]\n"),
.help_before = TRS("GTK multimedia transcoder\n"),
.args = (bg_cmdline_arg_array_t[]) { { TRS("Options"), args },
{ } },
.env = (bg_cmdline_ext_doc_t[])
{ { /* End */ } },
};
int main(int argc, char ** argv)
{
transcoder_window_t * win;
bg_app_init("gmerlin-transcoder", TRS("Gmerlin transcoder"), "transcoder");
bg_iconfont_init();
bg_cfg_registry_init();
bg_plugins_init();
/* We must initialize the random number generator if we want the
Vorbis encoder to work */
srand(time(NULL));
bg_cmdline_init(&app_data);
bg_gtk_init(&argc, &argv);
win = transcoder_window_create();
bg_cmdline_parse(args, &argc, &argv, win);
transcoder_window_run(win);
transcoder_window_destroy(win);
bg_plugins_cleanup();
bg_cfg_registry_save();
bg_cfg_registry_cleanup();
return 0;
}
|