Changeset 165 for libmpc/branches/r2d/mpcenc/mpcenc.c
- Timestamp:
- 12/19/06 21:39:02 (18 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
libmpc/branches/r2d/mpcenc/mpcenc.c
r164 r165 24 24 #include <errno.h> 25 25 26 #include "mp penc.h"26 #include "mpcenc.h" 27 27 #include <mpc/mpcmath.h> 28 28 … … 143 143 "\n" 144 144 "\033[1m\rUsage:\033[0m\n" 145 " mp penc [--options] <Input_File>\n"146 " mp penc [--options] <Input_File> <Output_File>\n"147 " mp penc [--options] <List_of_Input_Files> <Output_File> (not yet supp.)\n"148 " mp penc [--options] <List_of_Input_Files> <Output_Directory> (not yet supp.)\n"145 " mpcenc [--options] <Input_File>\n" 146 " mpcenc [--options] <Input_File> <Output_File>\n" 147 " mpcenc [--options] <List_of_Input_Files> <Output_File> (not yet supp.)\n" 148 " mpcenc [--options] <List_of_Input_Files> <Output_Directory> (not yet supp.)\n" 149 149 "\n" ); 150 150 … … 303 303 stderr_printf ( 304 304 "\033[1m\rExamples:\033[0m\n" 305 " mp penc inputfile.wav\n"306 " mp penc inputfile.wav outputfile.mpc\n"307 " mp penc --radio inputfile.wav outputfile.mpc\n"308 " mp penc --silent --radio --pns 0.25 inputfile.wav outputfile.mpc\n"309 " mp penc --nmt 12 --tmn 28 inputfile.wav outputfile.mpc\n"305 " mpcenc inputfile.wav\n" 306 " mpcenc inputfile.wav outputfile.mpc\n" 307 " mpcenc --radio inputfile.wav outputfile.mpc\n" 308 " mpcenc --silent --radio --pns 0.25 inputfile.wav outputfile.mpc\n" 309 " mpcenc --nmt 12 --tmn 28 inputfile.wav outputfile.mpc\n" 310 310 "\n" 311 311 "For further information see the file 'MANUAL.TXT'.\n" ); … … 319 319 "\n" 320 320 "\033[1m\rUsage:\033[0m\n" 321 " mp penc [--options] <Input_File>\n"322 " mp penc [--options] <Input_File> <Output_File>\n"321 " mpcenc [--options] <Input_File>\n" 322 " mpcenc [--options] <Input_File> <Output_File>\n" 323 323 "\n" 324 324 … … 339 339 340 340 "\033[1m\rExamples:\033[0m\n" 341 " mp penc inputfile.wav\n"342 " mp penc inputfile.wav outputfile.mpc\n"343 " mp penc --extreme inputfile.wav outputfile.mpc\n"344 " mp penc --silent --radio inputfile.wav outputfile.mpc\n"341 " mpcenc inputfile.wav\n" 342 " mpcenc inputfile.wav outputfile.mpc\n" 343 " mpcenc --extreme inputfile.wav outputfile.mpc\n" 344 " mpcenc --silent --radio inputfile.wav outputfile.mpc\n" 345 345 "\n" 346 346 "For further information see the file 'MANUAL.TXT' or use option --longhelp.\n" ); … … 1496 1496 char c; 1497 1497 fclose ( OutputFile ); 1498 stderr_printf ( "\nmp penc: Output file '%s' already exists, overwrite (Y/n)? ", OutputName );1498 stderr_printf ( "\nmpcenc: Output file '%s' already exists, overwrite (Y/n)? ", OutputName ); 1499 1499 c = waitkey (); 1500 1500 if ( c != 'Y' && c != 'y' ) { … … 1822 1822 } 1823 1823 1824 /* end of mp penc.c */1824 /* end of mpcenc.c */
Note: See TracChangeset
for help on using the changeset viewer.