[SOLVED] Transfer audio CD to disk

Non release banter
otan
Black ninja
Black ninja
Posts: 36
Joined: 23 Jun 2020, 21:31
Distribution: mint

[SOLVED] Transfer audio CD to disk

Post#1 by otan » 27 Sep 2020, 10:59

Best way to transfer to disk so that tracks can be quickly found and repeated?
Last edited by otan on 01 Oct 2020, 22:22, edited 1 time in total.

beny
Full of knowledge
Full of knowledge
Posts: 2086
Joined: 02 Jan 2011, 11:33
Location: italy

Transfer audio CD to disk

Post#2 by beny » 27 Sep 2020, 18:18

hi, ripit command line audio cd ripper there is a slackbuild for...

fulalas
DEV Team
DEV Team
Posts: 2050
Joined: 26 Oct 2016, 15:34
Distribution: Porteus
Location: Brazil

Transfer audio CD to disk

Post#3 by fulalas » 28 Sep 2020, 06:13

As far as I can remember, you can simply drag and drop audio tracks from CD to your preferred storage :)

tome
Contributor
Contributor
Posts: 675
Joined: 26 Jun 2013, 14:03
Distribution: x64 Openbox
Location: Russia is causing the immense damage to humanity
Contact:

Transfer audio CD to disk

Post#4 by tome » 28 Sep 2020, 22:31

Sometimes tracks are hidden and only visible in player. I used previous Proteus version to do this.
You have mind and feelings. Be wise and clever.

Kulle
Warlord
Warlord
Posts: 594
Joined: 28 Jan 2017, 10:39
Distribution: v4.0 64bit Xfce
Location: Berlin

Transfer audio CD to disk

Post#5 by Kulle » 29 Sep 2020, 05:15

Look here:

Code: Select all

https://en.wikipedia.org/wiki/Cdparanoia

fulalas
DEV Team
DEV Team
Posts: 2050
Joined: 26 Oct 2016, 15:34
Distribution: Porteus
Location: Brazil

Transfer audio CD to disk

Post#6 by fulalas » 29 Sep 2020, 20:56

@tome, do you have any ISO example available to download? I would like to give it a try :)

@Kulle, cdparanoia already comes in Porteus :)

otan
Black ninja
Black ninja
Posts: 36
Joined: 23 Jun 2020, 21:31
Distribution: mint

[SOLVED] Transfer audio CD to disk

Post#7 by otan » 01 Oct 2020, 22:04

Extract an entire disc, putting each track in a seperate file:

Code: Select all

guest@porteus:/tmp/myCD$ cdparanoia --batch myCD.wav

cdparanoia III release 10.2 (September 11, 2008)
Error parsing span argument

guest@porteus:/tmp/myCD$ cdparanoia --batch 1- myCD.wav

cdparanoia III release 10.2 (September 11, 2008)
Ripping from sector       0 (track  1 [0:00.00])
          to sector  274564 (track 67 [1:51.74])

outputting to track01.myCD.wav
 (== PROGRESS == [                              | 025874 00 ] == :^D * ==)   
outputting to track02.myCD.wav
 (== PROGRESS == [                              | 027674 00 ] == :^D * ==)   
outputting to track03.myCD.wav
 (== PROGRESS == [                              | 028949 00 ] == :^D * ==)
  ...
 outputting to track65.myCD.wav
 (== PROGRESS == [                              | 262639 00 ] == :^D * ==)
outputting to track66.myCD.wav
 (== PROGRESS == [                              | 266164 00 ] == :^D * ==)
outputting to track67.myCD.wav
 (== PROGRESS == [                              | 274564 00 ] == :^D * ==)
Done.

guest@porteus:~$ du -sh /tmp/myCD/
620M    /tmp/myCD/
Extracting contigious tracks:

Code: Select all

guest@porteus:~$ cdparanoia --batch 40-42 aCD.wav
cdparanoia III release 10.2 (September 11, 2008)

Ripping from sector  134315 (track 40 [0:00.00])
          to sector  146164 (track 42 [0:30.74])
outputting to track40.aCD.wav
 (== PROGRESS == [                              | 137914 00 ] == :^D * ==)
outputting to track41.aCD.wav
 (== PROGRESS == [                              | 143839 00 ] == :^D * ==)
outputting to track42.aCD.wav
 (== PROGRESS == [                              | 146164 00 ] == :^D * ==)
Done.

guest@porteus:~$ ls -sh *aCD.wav
8.1M track40.aCD.wav   14M track41.aCD.wav  5.3M track42.aCD.wav
Last edited by otan on 02 Oct 2020, 15:07, edited 1 time in total.

donald
Full of knowledge
Full of knowledge
Posts: 2065
Joined: 17 Jun 2013, 13:17
Distribution: Porteus 3.2.2 XFCE 32bit
Location: Germany

[SOLVED] Transfer audio CD to disk

Post#8 by donald » 02 Oct 2020, 01:10

BONUS:
Convert a Folder full of wav files to mp3

Spaces are allowed in file names - example:
Lindsey Stirling - Song Of The Caged Bird.wav converts to Lindsey Stirling - Song Of The Caged Bird.mp3
( no double ending like .wav.mp3 )
The original WAV files will not be overwritten or removed!

Save this as e.g. Lame.sh and run the script in the Folder containing the wav files.

Code: Select all

#!/bin/bash

for i in *.wav ; do
echo $i
b=`basename "$i" .wav`
echo $b
lame -m s -b 256 --strictly-enforce-ISO -q 2 "$i" /home/guest/Music/"$b.mp3"
done
Or have a separate MP3 folder created in the same folder as the WAV files.

Code: Select all

#!/bin/bash

mkdir ./mp3
for i in *.wav ; do
echo $i
b=`basename "$i" .wav`
echo $b
lame -m s -b 256 --strictly-enforce-ISO -q 2 "$i" ./mp3/"$b.mp3"
done
The created mp3s are of good quality.
You can of course set other parameters.
B)

beny
Full of knowledge
Full of knowledge
Posts: 2086
Joined: 02 Jan 2011, 11:33
Location: italy

[SOLVED] Transfer audio CD to disk

Post#9 by beny » 02 Oct 2020, 11:47

hi ripit when start to check audio disc have a link to cddb and make all audio track in mp3,the bitrate that you choose and all track with proper name.

donald
Full of knowledge
Full of knowledge
Posts: 2065
Joined: 17 Jun 2013, 13:17
Distribution: Porteus 3.2.2 XFCE 32bit
Location: Germany

[SOLVED] Transfer audio CD to disk

Post#10 by donald » 02 Oct 2020, 17:26

Hi beny
There is no freedb anymore - have you tried to configure ripit to use
gnudb.gnudb.org
port 8880

Asunder [the ripping tool in porteus 3.2.2] works with gnudb.

beny
Full of knowledge
Full of knowledge
Posts: 2086
Joined: 02 Jan 2011, 11:33
Location: italy

[SOLVED] Transfer audio CD to disk

Post#11 by beny » 02 Oct 2020, 19:00

hi this is the software:
perl-CDDB-get:
MD5SUM check for CDDB_get-2.28.1.tar.gz ... OK
Building package perl-CDDB-get-2.28.1-x86_64-1ponce.tgz ... OK

ripit:
MD5SUM check for ripit-3.9.0.tar.gz ... OK
Building package ripit-3.9.0-noarch-2ponce.tgz ... OK

donald
Full of knowledge
Full of knowledge
Posts: 2065
Joined: 17 Jun 2013, 13:17
Distribution: Porteus 3.2.2 XFCE 32bit
Location: Germany

[SOLVED] Transfer audio CD to disk

Post#12 by donald » 02 Oct 2020, 22:23

beny
getting the program is not the problem.

The program configuration tries to fetch the song information from freedb.org.
freedb.org no longer exists - an alternative is gnudb.org

The question is: a) Did you get a song title when you ripped a CD?
and b) if so. What settings are you using?

beny
Full of knowledge
Full of knowledge
Posts: 2086
Joined: 02 Jan 2011, 11:33
Location: italy

[SOLVED] Transfer audio CD to disk

Post#13 by beny » 03 Oct 2020, 16:08

hi donald, you are right i have changed the cddb with the musicbrainz database but seem that not work,well we have to do by hand....

User avatar
Rava
Contributor
Contributor
Posts: 5401
Joined: 11 Jan 2011, 02:46
Distribution: XFCE 5.01 x86_64 + 4.0 i586
Location: Forests of Germany

[SOLVED] Transfer audio CD to disk

Post#14 by Rava » 07 Feb 2022, 14:51

Currently trying asunder-2.7-x86_64-1gv.txz in 5.0rc3.

Seems to hang itself at least once every CD and that is beyond annoying.
Even started from terminal there is nothing amiss visible. But cdparanoia stops reading the CD, and lame is not started even when another wav file was already ripped.

I can see why the Port maintainers kicked it out of Porteus when it's that unreliable.

And you have to manually change the CDDB database, it was freedb in its settings, even when it is the newest available Slackware package. Changing it to gnudb as described above works.

beny
Full of knowledge
Full of knowledge
Posts: 2086
Joined: 02 Jan 2011, 11:33
Location: italy

[SOLVED] Transfer audio CD to disk

Post#15 by beny » 07 Feb 2022, 17:11

hi Rava would you try abcde....we are too old to back to school maybe not work.

Post Reply