Generally Audio CD to Hard disk direct copy is Impossible. We use ripper for convert mp3 to another format. For ripping we use in Linux sound juicer, Asunder CD Ripper, k3b etc. If ripper are not Install in our computer. What can we do? Today I give you some another way for ripping. For ripping another way we need lamp ( for mp3) & flac ( for flac format) install in our PC.
How to rip:-
1) First you insert CD into CD Drive than copy wav file to another folder.
2) We think this folder location in desktop. & folder name is myripl
3) Now by command of terminal cd go to folder.
In this case Code is :-
cd Desktop/myrip/
Now you run command :-
For mp3:-
for f in *.wav; do lame -b
160 -
q
0 "
$f" "${f%.wav}.mp
3"
;
done
You can use alternatively 96,112,118,192,256,320 in place of 160.
For flac :-
for f in *.wav; do flac --best "$f" "${f%.wav}.flac";
done
without ripper your ripping is finished. After ripping delete wav files from folder.
N.B. when you rip files CD is necessary in CD drive.
No comments:
Post a Comment