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
|
/* GSequencer - Advanced GTK Sequencer
* Copyright (C) 2005-2023 Joël Krähemann
*
* This file is part of GSequencer.
*
* GSequencer 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 3 of the License, or
* (at your option) any later version.
*
* GSequencer 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 GSequencer. If not, see <http://www.gnu.org/licenses/>.
*/
#include <glib.h>
#include <glib-object.h>
#include <ags/libags.h>
#include <ags/libags-audio.h>
#include <stdio.h>
#include <libxml/tree.h>
int
main(int argc, char **argv)
{
AgsMidiParser *midi_parser;
gchar *filename;
if(argc == 2){
if(!g_ascii_strncasecmp(argv[1], "--help", 7)){
printf("midi2xml converts MIDI to XML\n\n");
printf("Usage:\n\t%s\n\t%s\n\t%s\n\t%s\n\n",
"Report bugs to <jkraehemann@gmail.com>\n",
"--help display this help and exit",
"--version output version information and exit",
"<file> the file to be processed");
exit(0);
}else if(!g_ascii_strncasecmp(argv[1], "--version", 10)){
printf("midi2xml 1.0.0\n\n");
printf("%s\n%s\n%s\n\n",
"Copyright (C) 2015 Joël Krähemann",
"This is free software; see the source for copying conditions. There is NO",
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.");
printf("Written by Joël Krähemann\n");
exit(0);
}else{
filename = argv[1];
}
}else{
return(-1);
}
midi_parser = ags_midi_parser_new_from_filename(filename);
ags_midi_parser_parse_full(midi_parser);
xmlSaveFormatFileEnc("-", midi_parser->doc, "UTF-8", 1);
return(0);
}
|