![]() |
![]() |
#1 |
Member
Join Date: Sep 2004
Location: Poland, Warsaw
Posts: 15
|
![]()
Hi.
I've just configured ripperX, actually cdparanoia to work with ripperX, but only for encode mp3 files and I would like to configure them to make mpc files. How can I do it? And which encoder should I use? Version 1.14 or 1.15r? |
![]() |
![]() |
![]() |
#2 |
Musepack Nanny
Join Date: Jul 2004
Posts: 168
![]() |
![]()
Does anyone use RipperX? I see no mention of Musepack support, but I cannot test it myself.
Regarding mppenc, if you find --standard good enough, stay with 1.14. You're not likely to tell the difference between 1.15r and 1.14. If you don't mind slightly bigger files, go with 1.15r. At --insane and above, I cannot find any sample that sounds worse with 1.15r. It's more likely that some samples will benefit from 1.15r at such settings. What do you mostly listen to? |
![]() |
![]() |
![]() |
#3 | |
Member
Join Date: Sep 2004
Location: Poland, Warsaw
Posts: 15
|
![]() Quote:
![]() Under Windows I prefered Xtreme and BrainDead prestets... So, if using mpcenc is impossible in ripperx, how can I use it in console? I think about encoding full albums, not single files and I can't imagine writing the same command for each file ![]() |
|
![]() |
![]() |
![]() |
#4 |
Member
Join Date: Sep 2004
Location: Poland, Warsaw
Posts: 15
|
![]()
Anybody could answer me...
|
![]() |
![]() |
![]() |
#5 | |
Administrator
Join Date: Jul 2004
Location: Dresden, Germany
Posts: 17
|
![]()
Sorry, I've missed your post.
Quote:
Code:
#!/bin/sh for file in *wav do mppenc --xtreme --xlevel "$file" done ~ Florian |
|
![]() |
![]() |
![]() |
#6 |
Member
Join Date: Sep 2004
Location: Poland, Warsaw
Posts: 15
|
![]()
And then .mpc file will have same name as .wav?
|
![]() |
![]() |
![]() |
#7 | |
Administrator
Join Date: Jul 2004
Location: Dresden, Germany
Posts: 17
|
![]() Quote:
![]() |
|
![]() |
![]() |
![]() |
#8 |
Member
Join Date: Sep 2004
Location: Poland, Warsaw
Posts: 15
|
![]()
thanks a lot
![]() |
![]() |
![]() |
![]() |
#9 |
Member
Join Date: Sep 2004
Location: Poland, Warsaw
Posts: 15
|
![]()
I tried, and I have a problem.
I used --braindead not --xtreme and in info about mpc files there is: Code:
SV: 7.0, Profile: Unstable/Experimental Encoder: --Alpha-- 1.15 |
![]() |
![]() |
![]() |
#10 |
Admin
Join Date: Jul 2004
Posts: 372
![]() |
![]()
That's not a problem, the profile in files encoded by mppenc 1.15r is 'Unstable/Experimental', files encoded by 1.14 have the profile's name.
<span style='font-size:16pt;line-height:100%'>(About what to add to mppenc.sh to delete .wav files, I don't know)</span> |
![]() |
![]() |
![]() |
#11 | |
Administrator
Join Date: Jul 2004
Location: Dresden, Germany
Posts: 17
|
![]() Quote:
Code:
#!/bin/sh for file in *wav do mppenc --xtreme --xlevel "$file" rm "$file" done |
|
![]() |
![]() |
![]() |
#12 |
Member
Join Date: Sep 2004
Location: Poland, Warsaw
Posts: 15
|
![]()
Thank you very much but I forgot about something else...
I hope you are patient for lame users ![]() Can I tag files using mppenc and mppenc.sh file? If it is possible, how can I do it? |
![]() |
![]() |
![]() |
#13 |
Member
|
![]()
Maybe here is something useful.
Abcde is a frontend command-line utility for ripping,encoding and tagging in one step. It also supports FreeDB. I made some small changes on abcde2.20pre to support MPC Encoding. It only needs cdparanoia and mppenc installed. Maybe you want to make some changes in abcde.conf to fit your needs but it should work out of the box. Download abcde with MPC-Support Link to abcde Homepage
__________________
Close the world, txEn eht nepO |
![]() |
![]() |
![]() |
#14 |
Member
Join Date: Aug 2004
Location: The Netherlands
Posts: 7
|
![]()
I use this script. It will tag the mpc files, but only if your wav files are named like: /some/path/artist - album/tracknr - title
Code:
#!/bin/sh mppenc_options="--braindead --xlevel --deleteinput" echo "Current mppenc options: $mppenc_options" echo -n "Okay to use these? [Y/n] " read okay [ -z "$okay" ] && okay=y if [ "$okay" = "n" ] then mppenc_options="" while [ -z "$mppenc_options" ] do echo -n "Enter new mppenc options ('h' for help): " read mppenc_options if [ "$mppenc_options" = "h" ] then mppenc --longhelp echo mppenc_options="" fi done elif [ ! "$okay" = "y" ] then echo "Wrong answer. Bye!" exit 1 fi dir=`pwd` artalb=`basename "$dir"` artist=`echo "$artalb" | sed -e "s/ - /t/" | cut -f 1` album=`echo "$artalb" | sed -e "s/ - /t/" | cut -f 2` for file in *.wav do tracknr=`echo "$file" | sed -e "s/ - /t/" | cut -f 1` title=`echo "$file" | sed -e "s/ - /t/" | cut -f 2 | cut -d "." -f 1` nice mppenc $mppenc_options --artist "$artist" --album "$album" --title "$title" --track $tracknr "$file" done exit 0 |
![]() |
![]() |
![]() |
#15 |
Member
Join Date: Sep 2004
Location: Poland, Warsaw
Posts: 15
|
![]()
Actually I downloaded some libraries, and I installed Grip
![]() ![]() Anyway, thank you for help ![]() |
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
My return to using MPC... | Gow | General | 11 | 01 July 2006 01:02 am |
tag mpc winamp5 | carnut | MPC for Windows | 3 | 08 January 2006 07:50 pm |
All MPC files broken after file restore | deus62 | MPC for Windows | 3 | 19 August 2005 05:55 pm |
low level clicks and noise | davidm | General | 20 | 29 June 2005 09:05 am |
Ripping Audio Cd's to MPC then Burning | Soupaloop | MPC for Windows | 2 | 22 February 2005 06:46 pm |