blob: 1ab9d7796fe0df6cb9bc593261b3788fa48c5e84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
Icedax User guide
=================
NOTE: expressions in angle braces have to be substituted with
the corresponding numerical values.
For example: <delay in seconds> has to be substituted
with the numerical value to be used.
Common tasks
============
NOTE: The examples used here depend on proper default settings for interface
method and devices as specified in the Makefile. They can be overriden with
command line parameters, but here I choose to focus on simple examples.
Copy complete audio CDs
1. Copy an audio CD into wav files one per track.
icedax -B
will produce the sample wav files (one per track)
audio_01.wav
audio_02.wav
...
and the corresponding description files
audio_01.inf
audio_02.inf
...
2. Same as above but include MD-5 type signatures
icedax -B -M<length>
3. Same as above but use other file name ('party_cd.wav')
icedax -B -M<length> party_cd.wav
Copy single tracks
1. Copy one track (eg track 6) into a wav file.
icedax -t6
will produce a wav file including track 6
audio.wav
and
audio.inf
Copy parts of tracks
1. Copy from given start time to end of track
icedax -t6 -o<delay in 1/75 seconds>
will record track 6 starting at track time <delay>/75 seconds
from track beginning upto the end of track.
2. Copy from given start time and record for a given time
icedax -t6 -o<delay in 1/75 seconds> -d<time to record in seconds>
will record track 6 starting at track time <delay>/75 seconds
from track beginning for <time to record in seconds> seconds.
Copy tracks into a pipe
icedax -t6 -Oraw - | audio_compressor
will feed the audio samples (in big endian format) of track 6
into a secondary program audio_compressor.
(See also script cdda2mp3(.new) for a suggestion, how to process all tracks of
an audio cd with a MPEG-Layer3 encoder (not included here).)
Miscellaneous
1. Use icedax as a cd player
icedax -eN -t6
will copy the audio samples into a sound card (if sound card support
is compiled in) and will not write any file.
2. Get complete information on the cd
icedax -v63 -Nd0.01
will try to find out a media catalog number and track related
information (ISRCs) in addition to indices. For CD-Extra discs
limited support exists to retrieve additional information.
|