Music collection: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
Brian Wilson (talk | contribs)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
I currently use "abcde" for ripping CD's. It's doing most of what I need now thanks to careful tuning of the .abcde.conf file.
== Ripping CDs ==


I started using "grip" to convert my discs to audio files a long time ago when it came with Ubuntu. They dropped it from Ubuntu but I still used it by compiling from source.
On Windows, the WMP (Windows Media Player) does a fine job, it has settings now to save directly to my music collection on [[Wenda]] in /home/music.


I experimented with using FLAC but found it was not working in the Logitech Mediaserver. Instead of continuing to fight with it I opted to bump up the quality on the rip for my CD's.
instructions on using MP3 format are here https://www.dummies.com/computers/operating-systems/windows-10/how-to-rip-cds-in-windows-10/


All my players handle FLAC. Oh well.
I used "abcde" on Debian, works great, thanks to careful tuning of the .abcde.conf file.


== abcde ==
== on Debian: abcde ==


== Grip ==
Read the wiki here http://abcde.einval.com/wiki/


I use a locally compiled version of grip. Version 3.3.1 compiled on Ubuntu 14.10
Embedding cover art
Fixing Genre tag
Fixing Artist tag (removing "The")


Download from: http://sourceforge.net/projects/grip/
If the image is big then resize down to 512x512
file cover.jpg
mv cover.jpg backup
convert backup -resize cover.jpg


=== Build ===
for i in *mp3; do
  eyeD3 --add-image=cover.jpg:FRONT_COVER --artist=Pentangle --genre=Folk "$i"
done


sudo apt-get install  lame cdparanoia \
Or just add the image
  libgnomeui-dev libghc-vte-dev curl libcurl4-openssl-dev
for i in *mp3; do
./configure
  eyeD3 --add-image=cover.jpg:FRONT_COVER "$i"
make -j 6
done
sudo make install
 
vte is a terminal widget
 
=== Configure ===
 
Currently I just keep all the files in a folder hierarchy. I tried keeping a MySQL database but found that I never used it.
 
Device is /dev/sr0
 
==== Encoder ====
 
'''MP3'''
 
I used to use these settings for MP3 encoding.
 
Encoder is "lame".
 
command line: -h -V 1
 
file extension is .mp3
 
file format: ~/music/%A/%d/%t-%n.%x
 
=== ID3 ===
 
Uncheck "Add ID3 tags" -- lame is doing the tagging for us.
 
=== DiscDB ===
 
I use this:
freedb.musicbrainz.org
 
See http://wiki.musicbrainz.org/FreeDBGateway?highlight=%28freedb%29
 
=== Misc ===
 
Email address
 
Do not lowercase filenames
 
Do not change spaces to underscores

Latest revision as of 21:00, 18 July 2021

Ripping CDs

On Windows, the WMP (Windows Media Player) does a fine job, it has settings now to save directly to my music collection on Wenda in /home/music.

instructions on using MP3 format are here https://www.dummies.com/computers/operating-systems/windows-10/how-to-rip-cds-in-windows-10/

I used "abcde" on Debian, works great, thanks to careful tuning of the .abcde.conf file.

on Debian: abcde

Read the wiki here http://abcde.einval.com/wiki/

Embedding cover art Fixing Genre tag Fixing Artist tag (removing "The")

If the image is big then resize down to 512x512

file cover.jpg
mv cover.jpg backup
convert backup -resize cover.jpg
for i in *mp3; do 
  eyeD3 --add-image=cover.jpg:FRONT_COVER --artist=Pentangle --genre=Folk "$i"
done

Or just add the image

for i in *mp3; do 
  eyeD3 --add-image=cover.jpg:FRONT_COVER "$i"
done