need a little help here. Trying to do my rips another way and can't seem to get the executeif going right. The seperate "sections" aren't getting executed right. When the executif is true, it's executing a previous section. LIke the "write other entries" turns out to be true, but then it executes the "write first entries" instead. Then "finish up" turns out to be true, but it executes "write other entries". It's lagging behind and I can't seem to figure out why. Thanks for any help.
ini:
;
; ----------------------------------------------------------------------------------------------------------------------
; NUMBER OF ZEROS TO PAD THE TRACK NUMBER (0 to disable)
; ----------------------------------------------------------------------------------------------------------------------
PaddingZeros = 2
; ----------------------------------------------------------------------------------------------------------------------
; IS MAREO REQUIRED TO LOG TO THE SCREEN?
; ----------------------------------------------------------------------------------------------------------------------
LogToScreen = TRUE
; ----------------------------------------------------------------------------------------------------------------------
; IS MAREO REQUIRED TO LOG TO A TXT/LOG FILE?
; ----------------------------------------------------------------------------------------------------------------------
LogToFile = TRUE
; ----------------------------------------------------------------------------------------------------------------------
; IS MAREO REQUIRED TO DELETE THE WAV FILE AFTER ENCODING (TRUE) OR THE CD RIPPER DOES (FALSE)?
; ----------------------------------------------------------------------------------------------------------------------
DeleteWavFile = FALSE
; ---------------------------------------------------------------------------------------------------------------------------
; MP3 LAME: best MP3 encoder: [url=http://www.rarewares.org/mp3.html]http://www.rarewares.org/mp3.html[/url]
; ---------------------------------------------------------------------------------------------------------------------------
EXECUTEIF = TRUE
FINALPATH = D:\Music\MP3\[ARTIST]\[ALBUM] ([YEAR])\
FINALNAME = [TRACKPADDED] - [TITLE]
EXTENSION = mp3
ENCODEREXE = c:\tempencode\lame.exe
PARAMETERS = --alt-preset standard --add-id3v2 --pad-id3v2 --ignore-tag-errors --ta "[ARTIST]" --tl "[ALBUM]" --tt "[TITLE]" --tn "[TRACK]" --ty "[YEAR]" --tg "[GENRE]" --tc "[1]" "[SOURCE]" "[DESTTMP]"
RENAME = TRUE
; ----------------------------------------------------------------------------------------------------------------------
; FLAC: most supported lossless encoder: [url=http://flac.sourceforge.net/]http://flac.sourceforge.net/[/url]
; ----------------------------------------------------------------------------------------------------------------------
EXECUTEIF = TRUE
FINALPATH = D:\Music\Flac\[ARTIST]\[ALBUM] ([YEAR])\
FINALNAME = [TRACKPADDED] - [TITLE]
EXTENSION = flac
ENCODEREXE = c:\mareo\flac.exe
PARAMETERS = -8 -V "[SOURCE]" -o "[DESTTMP]" -T artist="[ARTIST]" -T album="[ALBUM]" -T title="[TITLE]" -T tracknumber="[TRACK]/10" -T date="[YEAR]" -T genre="[GENRE]" -T "TOTALTRACKS=10" -T "Album Artist=[1]"
RENAME = TRUE
; ---------------------------------------------------------------------------------------------------------------------------
; Write first entry
; ---------------------------------------------------------------------------------------------------------------------------
EXECUTEIF = [TRACK] = 1
FINALPATH = D:\Music\MP3\[ARTIST]\[ALBUM] ([YEAR])\
FINALNAME = [TRACKPADDED] - [TITLE]
EXTENSION = mp3
ENCODEREXE = D:\mareo\files\filewrite.exe
PARAMETERS = C:\flac\bin\metaflac.exe --add-replay-gain
RENAME = FALSE
; ---------------------------------------------------------------------------------------------------------------------------
; Write other entries
; ---------------------------------------------------------------------------------------------------------------------------
EXECUTEIF = TRUE
FINALPATH = D:\Music\MP3\[ARTIST]\[ALBUM] ([YEAR])\
FINALNAME = [TRACKPADDED] - [TITLE]
EXTENSION = mp3
ENCODEREXE = D:\mareo\files\filewrite.exe
PARAMETERS = "D:\Music\Flac\[ARTIST]\[ALBUM] ([YEAR])\[TRACKPADDED] - [TITLE].flac"
RENAME = FALSE
; ---------------------------------------------------------------------------------------------------------------------------
; Finishup
; ---------------------------------------------------------------------------------------------------------------------------
EXECUTEIF = [TRACK] = [2]
FINALPATH = D:\Music\MP3\[ARTIST]\[ALBUM] ([YEAR])\
FINALNAME = [TRACKPADDED] - [TITLE]
EXTENSION = mp3
ENCODEREXE = D:\mareo\files\flacbatch.exe
PARAMETERS = " "
RENAME = FALSE
; EOF
log:
;
***********************************************************
* MAREO - Multiple Applications Runner for EAC and Others *
* Copyright 2003-2006 by Kwanbis -- Under the GPL License *
* Version 4.0.1 - Home Page at [url=http://www.webearce.com.ar]http://www.webearce.com.ar[/url] *
* Developed with Borland Delphi [url=http://borland.com/delphi]http://borland.com/delphi[/url] *
***********************************************************
*** Received Command Line ***
"D:\mareo\mareo.exe" D:\mareo.ini "C:\tempdump\10 - Oceans From the Rain.wav" "C:\tempdump\10 - Oceans From the Rain.flac" "Seventh Day Slumber" "Once Upon a Shattered Life" "Oceans From the Rain" "10" 2005 "Christian Rock" "Seventh Day Slumber" 10
*** Parsed Parameters ***
INIFILE (%1) = D:\mareo.ini
[SOURCE] (%2) = C:\tempdump\10 - Oceans From the Rain.wav
[DESTTMP] (%3) = C:\tempdump\10 - Oceans From the Rain.flac
[ARTIST] (%4) = Seventh Day Slumber
[ALBUM] (%5) = Once Upon a Shattered Life
[TITLE] (%6) = Oceans From the Rain
[TRACK] (%7) = 10
[TRACKPADDED] = 10
[YEAR] (%8) = 2005
[GENRE] (%9) = Christian Rock
[1] (%10) = Seventh Day Slumber
[2] (%11) = 10
*** INI Parameters ***
Padding Zeros = 2
LogToScreen = TRUE
LogToFile = TRUE
DeleteWavFile = FALSE
*** mareoLAST.INI ***
[LASTTRACK] =
*** PROCESSING ENCODER ORDER # 1 ***
Execute If = TRUE
NEW EXTENSION = mp3
TEMPORAL Full Name = C:\tempdump\10 - Oceans From the Rain.mp3
TEMPORAL Path Only = C:\tempdump
TEMPORAL Name Only = 10 - Oceans From the Rain
RENAME Final File = TRUE
FINAL Full Name = D:\Music\MP3\Seventh Day Slumber\Once Upon a Shattered Life (2005)\10 - Oceans From the Rain.mp3
FINAL Path Only = D:\Music\MP3\Seventh Day Slumber\Once Upon a Shattered Life (2005)
FINAL Name Only = 10 - Oceans From the Rain
EXECUTING: c:\tempencode\lame.exe --alt-preset standard --add-id3v2 --pad-id3v2 --ignore-tag-errors --ta "Seventh Day Slumber" --tl "Once Upon a Shattered Life" --tt "Oceans From the Rain" --tn "10" --ty "2005" --tg "Christian Rock" --tc "Seventh Day Slumber" "C:\tempdump\10 - Oceans From the Rain.wav" "C:\tempdump\10 - Oceans From the Rain.mp3"
EXECUTION: SUCCESS
DIRECTORY "D:\Music\MP3\Seventh Day Slumber\Once Upon a Shattered Life (2005)" allready exists.
DELETING: D:\Music\MP3\Seventh Day Slumber\Once Upon a Shattered Life (2005)\10 - Oceans From the Rain.mp3 ... SUCCESS
RENAMING: C:\tempdump\10 - Oceans From the Rain.mp3 =] D:\Music\MP3\Seventh Day Slumber\Once Upon a Shattered Life (2005)\10 - Oceans From the Rain.mp3 ... SUCCESS
*** PROCESSING ENCODER ORDER # 2 ***
Execute If = TRUE
NEW EXTENSION = flac
TEMPORAL Full Name = C:\tempdump\10 - Oceans From the Rain.flac
TEMPORAL Path Only = C:\tempdump
TEMPORAL Name Only = 10 - Oceans From the Rain
RENAME Final File = TRUE
FINAL Full Name = D:\Music\Flac\Seventh Day Slumber\Once Upon a Shattered Life (2005)\10 - Oceans From the Rain.flac
FINAL Path Only = D:\Music\Flac\Seventh Day Slumber\Once Upon a Shattered Life (2005)
FINAL Name Only = 10 - Oceans From the Rain
EXECUTING: c:\mareo\flac.exe -8 -V "C:\tempdump\10 - Oceans From the Rain.wav" -o "C:\tempdump\10 - Oceans From the Rain.flac" -T artist="Seventh Day Slumber" -T album="Once Upon a Shattered Life" -T title="Oceans From the Rain" -T tracknumber="10/10" -T date="2005" -T genre="Christian Rock" -T "TOTALTRACKS=10" -T "Album Artist=Seventh Day Slumber"
EXECUTION: SUCCESS
DIRECTORY "D:\Music\Flac\Seventh Day Slumber\Once Upon a Shattered Life (2005)" allready exists.
DELETING: D:\Music\Flac\Seventh Day Slumber\Once Upon a Shattered Life (2005)\10 - Oceans From the Rain.flac ... SUCCESS
RENAMING: C:\tempdump\10 - Oceans From the Rain.flac =] D:\Music\Flac\Seventh Day Slumber\Once Upon a Shattered Life (2005)\10 - Oceans From the Rain.flac ... SUCCESS
*** PROCESSING ENCODER ORDER # 3 ***
Execute If = 10 = 1
NEW EXTENSION = mp3
TEMPORAL Full Name = C:\tempdump\10 - Oceans From the Rain.mp3
TEMPORAL Path Only = C:\tempdump
TEMPORAL Name Only = 10 - Oceans From the Rain
RENAME Final File = FALSE
FINAL Full Name = D:\Music\MP3\Seventh Day Slumber\Once Upon a Shattered Life (2005)\10 - Oceans From the Rain.mp3
FINAL Path Only = D:\Music\MP3\Seventh Day Slumber\Once Upon a Shattered Life (2005)
FINAL Name Only = 10 - Oceans From the Rain
EXECUTEIF = "10 = 1" ... Evaluating ... FALSE
*** PROCESSING ENCODER ORDER # 4 ***
Execute If = TRUE
NEW EXTENSION = mp3
TEMPORAL Full Name = C:\tempdump\10 - Oceans From the Rain.mp3
TEMPORAL Path Only = C:\tempdump
TEMPORAL Name Only = 10 - Oceans From the Rain
RENAME Final File = FALSE
FINAL Full Name = D:\Music\MP3\Seventh Day Slumber\Once Upon a Shattered Life (2005)\10 - Oceans From the Rain.mp3
FINAL Path Only = D:\Music\MP3\Seventh Day Slumber\Once Upon a Shattered Life (2005)
FINAL Name Only = 10 - Oceans From the Rain
EXECUTING: D:\mareo\files\filewrite.exe C:\flac\bin\metaflac.exe --add-replay-gain
EXECUTION: SUCCESS
RENAME IS FALSE, NO need to rename.
*** PROCESSING ENCODER ORDER # 5 ***
Execute If = 10 = 10
NEW EXTENSION = mp3
TEMPORAL Full Name = C:\tempdump\10 - Oceans From the Rain.mp3
TEMPORAL Path Only = C:\tempdump
TEMPORAL Name Only = 10 - Oceans From the Rain
RENAME Final File = FALSE
FINAL Full Name = D:\Music\MP3\Seventh Day Slumber\Once Upon a Shattered Life (2005)\10 - Oceans From the Rain.mp3
FINAL Path Only = D:\Music\MP3\Seventh Day Slumber\Once Upon a Shattered Life (2005)
FINAL Name Only = 10 - Oceans From the Rain
EXECUTEIF = "10 = 10" ... Evaluating ... TRUE
EXECUTING: D:\mareo\files\filewrite.exe "D:\Music\Flac\Seventh Day Slumber\Once Upon a Shattered Life (2005)\10 - Oceans From the Rain.flac"
EXECUTION: SUCCESS
RENAME IS FALSE, NO need to rename.
*** Encoder Orders Ends ***
DeleteWaveFile is FALSE.
+++ DONE +++
NO errors ocurred.