LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 06-03-2015, 01:05 PM   #1
itscience
Member
 
Registered: May 2015
Location: Lancashire UK
Distribution: arch
Posts: 37

Rep: Reputation: Disabled
abcde CD ripping settings for flac.. no flacs :-(


Hiya, I'm new and this is my first question:
I want to use abcde to rip my CDs to .flac format and I am using Ubuntu.
I installed flac and abcde and used this guide http://www.andrews-corner.org/abcde.html#flac for the settings.

I should have all the optional packages needed (cdparanoia, flac) and have placed .abcde.conf in my /home/user directory. Whatever it is doing when I execute the abcde command, it's not leaving me my music.flac because when I use $find -name '*.flac' I cannot find any new files :-(

I'm sure the answer is staring me in the face but I selected a folder for the OUTPUT and nothing other than a folder 'abcde.a609ac0d' with data files in my home directory

What trick am I missing here? Hope someone can help me, this is frustrating. I can post the .abcde.conf file I am using and I'm sure I am keeping it in the right location because the flac disclaimer comes up..
 
Old 06-04-2015, 05:24 AM   #2
dijetlo
Senior Member
 
Registered: Jan 2009
Location: RHELtopia....
Distribution: Solaris 11.2/Slackware/RHEL/
Posts: 1,491
Blog Entries: 2

Rep: Reputation: Disabled
OK, reading your article, if you used the default configuration, your output file should be in /home/$USER/Music.
Do me a favor before we drill deeper into this and check to make sure

1: You have a Music directory in your home directory
2: It doesn't have .flac files in it.

The find command only searches the current working directory tree unless you supply it a different path so "$find -name '*.flac'" isn't a global search.
it's "find / -name <filename>"

If you are calling abcde from the command line, do you get any output from the application or does it fail silently?
 
Old 06-04-2015, 05:25 AM   #3
dijetlo
Senior Member
 
Registered: Jan 2009
Location: RHELtopia....
Distribution: Solaris 11.2/Slackware/RHEL/
Posts: 1,491
Blog Entries: 2

Rep: Reputation: Disabled
Oh, and before I forget, welcome to Linuxquestions (as a poster).
 
Old 06-04-2015, 09:28 AM   #4
itscience
Member
 
Registered: May 2015
Location: Lancashire UK
Distribution: arch
Posts: 37

Original Poster
Rep: Reputation: Disabled
Hi, thanks for getting back to me.
find -name '*.flac' actually does work because when I used it I found all my previous .flac files :-)
I cp /etc/abcde.conf /home/edwooger/.abcde.conf and used andrew's corner for the flacs.

These are the options that I have uncommented. Did I use a comma or speech marks.
CDDBMETHOD=cddb
NOCDDBQUERY=n
SHOWCDDBFIELDS=tracknum,artist,title,year,genre,
FLACENCODERSYNTAX=flac
CDROMREADERSYNTAX=cdparanoia
KEEPWAVS=n
PADTRACKS=y
LAME=lame
OGGENC=oggenc
FLAC=flac
ID3=id3
CDPARANOIA=cdparanoia
CDDISCID=cd-discid
OGGENCOPTS="-q 6"
FLACOPTS="-s -e -V -8"
CDPARANOIAOPTS="--never-skip=40"
ACTIONS=cddb,read,encode,tag,move,clean
OUTPUTDIR=`$HOME/Downloads`
OUTPUTTYPE="flac"
OUTPUTFORMAT='${OUTPUT}/${ARTISTFILE}-${ALBUMFILE}/${TRACKNUM}.${TRACKFILE}'
ONETRACKOUTPUTFORMAT='${OUTPUT}/${ARTISTFILE}-${ALBUMFILE}/$ALBUMFILE}'
VAONETRACKOUTPUTFORMAT='${OUTPUT}/Various-${ALBUMFILE}/${ALBUMFILE}'
MACPROCS=2
LOWDISK=y

mungefilename ()
{
echo "$@" | sed s,:,\ -,g | tr \ / __ | tr -d \'"\?\[:cntrl:\]
}

EJECTCD=y


Thanks for your help :-)
 
1 members found this post helpful.
Old 06-04-2015, 09:36 AM   #5
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,840

Rep: Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308
OUTPUTDIR="$HOME/Downloads"
I assume that should work.
I see you have backticks, `$HOME/Downloads`, probably that caused the problem.

Also you can try
EXTRAVERBOSE=2
to check what's happening
 
1 members found this post helpful.
Old 06-04-2015, 11:54 AM   #6
itscience
Member
 
Registered: May 2015
Location: Lancashire UK
Distribution: arch
Posts: 37

Original Poster
Rep: Reputation: Disabled
Genius. Thanks for your help.
Gonna try and label this topic as [SOLVED] :-)
 
Old 06-05-2015, 02:44 AM   #7
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,840

Rep: Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308Reputation: 7308
glad to help you
if you really want to say thanks just click on YES
 
2 members found this post helpful.
Old 06-12-2015, 05:40 AM   #8
andrew.46
Senior Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 1,365

Rep: Reputation: 493Reputation: 493Reputation: 493Reputation: 493Reputation: 493
Quote:
Originally Posted by itscience View Post
I:
Code:
cp /etc/abcde.conf /home/edwooger/.abcde.conf
and used andrew's corner for the flacs.
There are multiple ways of running the conf file. You could simply use only the flac information in a single ~/.abcde.conf file and then running the command:

Code:
abcde
will run only the flac output. Or you could use the so-called combo conf file which has carefully selected settings for 8 different audio formats and call abcde for flac as:

Code:
abcde -o flac
or any of the 7 other formats after the -o option and abcde will produce only the requested audio codec type. Lots of choices!

You may see that I have changed all of the conf files over the last day or so as abcde 2.7 should be out shortly with a big list of improvements .
 
1 members found this post helpful.
Old 12-12-2015, 02:02 PM   #9
itscience
Member
 
Registered: May 2015
Location: Lancashire UK
Distribution: arch
Posts: 37

Original Poster
Rep: Reputation: Disabled
Hiya, Andrew :-)

Thanks for the reply. I found your response and now started using the 10 codex config.
I have all the important one working, the ones I know about: flac, mp3, wav and ogg.
I never heard or used the other 4 and they don't seem to work, anyway. I #tagged them out.

I get this error, otherwise:

which: no mpcenc in (/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/cxoffice/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl: usr/bin/vendor_perl:/usr/bin/core_perl)
[ERROR] abcde: mpcenc is not in your path.
[INFO] Define the full path to the executable if it exists on your system.

I don't know what it means because I checked my packages and I did have one of them installed and still came up with this message. I'm sure it's something obvious that I am missing and it's not something I will miss not having but for future reference it be nice to know how to fix.

Thanks again for the reply!
 
Old 12-13-2015, 02:49 AM   #10
andrew.46
Senior Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 1,365

Rep: Reputation: 493Reputation: 493Reputation: 493Reputation: 493Reputation: 493
I suspect that you are missing mpcenc which is the encoder for Musepack. Nice sound if you get around to installing it btw...
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] ripping streams flac compressed borgibo Linux - Software 9 02-21-2010 03:07 PM
Error while ripping to flac Jeebizz Slackware 16 11-25-2008 11:38 AM
Automatic CD ripping to FLAC with tags Xzi Debian 3 08-25-2007 10:15 PM
ripping to FLAC and vorbis in tandem? bl0tt0 Slackware 3 07-21-2006 06:22 PM
K3B + flac + ripping = hang. ShockValue Linux - Software 3 11-12-2003 05:55 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 02:37 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration