Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Mareo +Wavegain SSRC assist needed (EAC) (Read 1967 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Mareo +Wavegain SSRC assist needed (EAC)

I have Tried Mareo with Wavegain and Mppenc, but the problem is it wont work with SSRC


First i applied Wavgain as Preprocessor like this


;file: Mareo.ini

EXT = NONE
PATH = NONE
ENCODER = E:\Program Files\EACopy\wavegain.exe
PARAMETERS = --radio --apply --noclip --dither 3 "@source@"

; then i applied some sort of SSRC Resampling
EXT = NONE
PATH = NONE
ENCODER = E:\Program Files\EACopy\ssrc_hp.exe
PARAMETERS = --twopass --dither 3 --pdf 1 --rate 48000 "@source@" "@dest@"
; EOF

EXT = mpc
PATH = NONE
ENCODER = E:\Program Files\EACopy\mppenc.exe
PARAMETERS = --quality 7 --xlevel --artist "@artist@" --album "@album@" --title "@title@" --track "@track@" --year @year@ --genre "@genre@"--comment "Cornholio!" "@source@" "@dest@"

; EOF







But the Problem is, Mareo doesn't process it correctly or something
it stores the @dest@ file everytime with the filename "tmp(somerandom).none"
and mppenc processes only the .wav output generated from Wavegain.

So my question is , instead using the SSRC resampler, just use a external instance of mareo with another .ini file containing the final processing after SSRC

I did not test it , cause lack of time , but could this work?


EXT = NONE
PATH = NONE
ENCODER = E:\Program Files\EACopy\mareo.exe
PARAMETERS =  mareo2.ini @filenameonly@ @source@ @dest@ @artist@ @album@
@title@ @track@ @year@ @genre@ @ownpath@ @finalpath@ @finalfullname@ @tmppathonly@ @tmpnameonly@ @extonly@


And the Mareo2.ini contain probaly some sort of

EXT = NONE
PATH = NONE
ENCODER = SSRC_HP.exe
PARAMETERS = --twopass --dither 3 --pdf 1 --rate 48000 "@source@" "@dest@"

EXT = mpc
PATH = NONE
ENCODER=mppenc.exe
PARAMETERS = --quality 7 --xlevel --artist "@artist@" --album "@album@" --title "@title@" --track "@track@" --year @year@ --genre "@genre@"--comment "Cornholio!" "@source@" "@dest@"



Ok would that work somehow?