![]() |
![]() |
#1 |
Member
Join Date: Oct 2004
Posts: 1
|
![]()
Hi all, big mpc lover here
![]() ive searched here & searched the net looking for command line switches for the mpc decoder (mppdec195.exe) & im wondering if say i use mppdec195.exe *.mpc within a batch file , once it starts can i make it jump tracks say with a hotkey ? the only way ive found of achieving this is by writing the following into a batch ..... mppdec195.exe track01.mpc mppdec195.exe track02.mpc mppdec195.exe track03.mpc mppdec195.exe track04.mpc mppdec195.exe track05.mpc mppdec195.exe track06.mpc mppdec195.exe track07.mpc mppdec195.exe track08.mpc mppdec195.exe track09.mpc mppdec195.exe track10.mpc mppdec195.exe track11.mpc mppdec195.exe track12.mpc then using the control & c to get up the terminate batch then press no it will then move onto the next track , but this is a bit of clunky way of doing it :? any ideas ? thnx in advance ![]() |
![]() |
![]() |
![]() |
#2 |
Member
Join Date: Aug 2004
Posts: 10
|
![]()
Sorry I accidentally pushed reply, but no ideas
![]() Instead of writing all the files you can try: for %i in (.*.mpc) do mppdec %i. Bye. |
![]() |
![]() |
![]() |
#3 |
Guest
Join Date: Aug 2004
Posts: 16
|
![]()
Ciao.
Try this: Code:
@echo off rem This is a CMD file to encode all WAV files in a folder to MPCs via MPPENC.EXE.. rem Make sure this CMD file resides in the same folder as MPPENC.EXE. rem rem The argument to this CMD file should be the full path to the folder containing the WAV files. rem Display our arguments.. echo Full Arg: %1 echo Drive: "%~d1" echo Path: "%~p1" echo Name: "%~n1" echo Ext: "%~x1" rem Change to arg drive and path %~d1 cd "%1" cd rem Apply ReplayGain via wavegain to dir "%~dp0wavegain.exe" --album --apply *.wav rem Encode with MPPENC.. for %%z in (*.wav) do "%~dp0mppenc.exe" --quality 7 "%%z" "%%~nz.mpc" if errorlevel 0 del Track*.wav :exit and use --xlevel instead. (myself prefer wavegain method though, since it change the amplitude before encoding, and thus. gives you a better result, conserning amplitude after decoding.) perhaps not the easyest one, but it works flawlessly. --------------------------------------------------------------------- NOTE: You can further set up EAC for usage this way: (copy your script to system32 dir, or eac dir if you copy cmd to it.) -user defined encoder. -extension .mpc -program path C:WINNTsystem32CMD.EXE or simply copy your cmd to eac dir. [just for ease] -additional command line: /c C:audioEACLameA.cmd %o %s %d -eventually tick the add idv3. -tick delete wav should be unnessesery, but change this line in script: "if errorlevel 0 del Track*.wav" to just del *.wav hope this helps.. @muse |
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
CDEX and MPC files | Valvola | General | 1 | 24 June 2006 11:19 am |
All MPC files broken after file restore | deus62 | MPC for Windows | 3 | 19 August 2005 05:55 pm |
downloaded decoder and plugin not functioning @_@ | ringhelediel | MPC for Windows | 1 | 17 July 2005 03:46 am |
low level clicks and noise | davidm | General | 20 | 29 June 2005 09:05 am |
MPC switches. | @muse | General | 3 | 04 August 2004 09:32 pm |