Music collection: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
m New page: I use a locally compiled version of grip. Currently I just keep all the files in a folder hierarchy. I tried keeping a MySQL database but found that I never used it. == Grip Settings == ...
 
Brian Wilson (talk | contribs)
 
(16 intermediate revisions by the same user not shown)
Line 1: Line 1:
I use a locally compiled version of grip.
== Ripping CDs ==


Currently I just keep all the files in a folder hierarchy. I tried keeping a MySQL database but found that I never used it.
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.


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


Device is /dev/sr0
I used "abcde" on Debian, works great, thanks to careful tuning of the .abcde.conf file.


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


Encoder is "lame".
Read the wiki here http://abcde.einval.com/wiki/


Encoder command line: -h -V 2 %w %m
Embedding cover art
Fixing Genre tag
Fixing Artist tag (removing "The")


File extension is mp3
If the image is big then resize down to 512x512
file cover.jpg
mv cover.jpg backup
convert backup -resize cover.jpg


Encode file format: ~/music/%A/%d/%t-%n.%x
for i in *mp3; do
  eyeD3 --add-image=cover.jpg:FRONT_COVER --artist=Pentangle --genre=Folk "$i"
done


Delete .wav after encoding
Or just add the image
 
for i in *mp3; do
Create m3u files
  eyeD3 --add-image=cover.jpg:FRONT_COVER "$i"
 
done
Use relative paths in m3u files
 
Encoding bitrate 128
 
Number of CPUs to use 2
 
 
=== 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