summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
authorKeine_Ahnung <dirk-vdr@gmx.de>2012-09-18 15:06:44 +0200
committerKeine_Ahnung <dirk-vdr@gmx.de>2012-09-18 15:06:44 +0200
commitee94a5640140db8369f64b676bbba7b06d006f47 (patch)
tree5bea078823a222057da6ec7a710a42ad02072bae /setup.c
parentd74decea551c5535f75dda64f271bf7f80b2adc1 (diff)
downloadvdr-plugin-ripit-ee94a5640140db8369f64b676bbba7b06d006f47.tar.gz
vdr-plugin-ripit-ee94a5640140db8369f64b676bbba7b06d006f47.tar.bz2
- Regenerated Makefile based upon vdr 1.7.30
DEFAULT_RIPIT_DIR could be set in make.config|global or as an make commandline parameter - switched to gettext an added Italian translation - Added help system for setup menu edit help.h for the english help pages or the po files for the other languages - ripit.pl removed, now vdr-ripit/vdr-eject do the job calling the ripper - Removed networking support - Added cPluginRipit::Active(void) to prevent shutdown if ripping in progress - Removed [device] from svdrp command START - Reordered Setup menu - kBack now leave the log windows - some improvements on log windows (there are still room for improvements) - Added sourcecode formatter rule
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c31
1 files changed, 18 insertions, 13 deletions
diff --git a/setup.c b/setup.c
index d2acd27..7e83d66 100644
--- a/setup.c
+++ b/setup.c
@@ -30,18 +30,23 @@ cRipitSetup RipitSetup;
cRipitSetup::cRipitSetup(void)
{
Ripit_hidden = 0;
- Ripit_halt = 0;
- Ripit_noquiet = 0;
- Ripit_eject = 1;
+ Ripit_lastlog = 17;
+ Ripit_excludespecialchars = 1;
+ Ripit_underscores = 1;
+ Ripit_playlist = 0;
+ Ripit_verbosity = 1;
Ripit_fastrip = 0;
- Ripit_lowbitrate = 6;
- Ripit_maxbitrate = 9;
- Ripit_crc = 0;
- Ripit_preset = 2;
- strcpy(Ripit_encopts, "");
- strcpy(Ripit_dev,"/dev/cdrom");
- strcpy(Ripit_dir,"/vdr_daten/mp3/RippedCDs/tmp");
- Ripit_remote = 0;
- strcpy(Ripit_remotevalue,"--sshlist master,bedroom --scp");
- Ripit_nice = 5;
+ Ripit_lowbitrate = 4;
+ Ripit_maxbitrate = 8;
+ Ripit_crc = 1;
+ Ripit_encoding_type = 3;
+ Ripit_oggquality = 5;
+ Ripit_nice = 19;
+ strcpy(Ripit_dir,DEFAULT_RIPIT_DIR);
+ strcpy(Ripit_ripopts, "--coder \"2\" --flacopt \"--ogg --best\"");
+ strcpy(Ripit_encopts1, "-h");
+ strcpy(Ripit_encopts2, "-h");
+ strcpy(Ripit_encopts3, "-h");
+ strcpy(Ripit_encopts4, "--best");
+ strcpy(Ripit_encopts5, "");
}