web-dev-qa-db-ja.com

セーフコピー後にオーディオCDを回復する

flacに(_K3B_またはその他を使用して)リッピングしたいオーディオCD(数年前に作成)を持っています。 _K3B_を完了できず、CDが破損していることに気付きました。

safecopyと_--stage-1-3_引数を使用してデータを回復することができました。出力(以下を参照)から、データは適切に回復されたようです。

ただし、ファイルをマウントしてそこから取得できると期待していました。残念ながら、そうではないようです。

_$ Sudo mount -o loop -t iso9660 diskimage /media/cdrom1/
mount: block device /mnt/data/Bureau/diskimage is write-protected, mounting read-only
mount: wrong fs type, bad option, bad superblock on /dev/loop1,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so
_

dmesgはあまり有用な出力を表示しません:

_$ dmesg | tail
ISOFS: Unable to identify CD-ROM format.
_

確かにそれは認識されていない形式のようです:

_$ file diskimage 
diskimage: data
_

当然のことながら、ファイルの名前を_.iso_、_.raw_、_.img_、または_.bin_に変更しても違いはありません。

インターネット上の一部の人々は_ccd2iso_の使用を推奨していますが、それも失敗します(Unrecognized sector mode (0) at sector 0!)。

この生データダンプからオーディオを抽出するにはどうすればよいですか?

これがsafecopyからの出力です。 _stage3.badblocks_は空です。

_$ safecopy /dev/sr0 diskimage --stage1
Low level device calls enabled mode: 2
Reported hw blocksize: 4096
CDROM audio - low level access: drive reset, raw read
CDROM low level disk size: 784954128
CDROM low level block size: 2352
Reported low level blocksize: 2352
File size: 784954128
Blocksize: 2352
Fault skip blocksize: 78493296
Resolution: 78493296
Min read attempts: 1
Head moves on read error: 0
Badblocks output: stage1.badblocks
Marker string: BaDbLoCk
Starting block: 0
Source: /dev/sr0
Destination: diskimage
......................................... [40961]    
......................................... [82945]    
......................................... [124929]    
......................................... [166913]    
......................................... [208897]    
......................................... [250881]    
................................[284577](+669325104){X [317950]    
}[317950](+78493296)
................[333739](+37135728){X}[367112](+78493296)

Done!
Recovered bad blocks: 0
Unrecoverable bad blocks (bytes): 2 (156986592)
Blocks (bytes) copied: 333739 (784954128)

xavier@marvin:~/Bureau$ safecopy /dev/sr0 diskimage --stage2
Low level device calls enabled mode: 2
Reported hw blocksize: 4096
CDROM audio - low level access: drive reset, raw read
CDROM low level disk size: 784954128
CDROM low level block size: 2352
Reported low level blocksize: 2352
File size: 784954128
Blocksize: 2352
Fault skip blocksize: 301056
Resolution: 2352
Min read attempts: 1
Head moves on read error: 0
Incremental mode file: stage1.badblocks
Incremental mode blocksize: 2352
Badblocks output: stage2.badblocks
Starting block: 0
Source: /dev/sr0
Destination: diskimage
Current destination size: 863447424
........................[309047](+726878544){X [309175]    
<<<<<<<}[309048](+2352)
.....[313338](+10090080){X<<<<<<<}[313339](+2352)
.....  8-( 95%
Done!
Recovered bad blocks: 0
Unrecoverable bad blocks (bytes): 2 (4704)
Blocks (bytes) copied: 317950 (747818400)

$ safecopy /dev/sr0 diskimage --stage3
Low level device calls enabled mode: 2
Reported hw blocksize: 4096
CDROM audio - low level access: drive reset, raw read
CDROM low level disk size: 784954128
CDROM low level block size: 2352
Reported low level blocksize: 2352
File size: 784954128
Blocksize: 2352
Fault skip blocksize: 2352
Resolution: 2352
Min read attempts: 4
Head moves on read error: 1
Incremental mode file: stage2.badblocks
Incremental mode blocksize: 2352
Badblocks output: stage3.badblocks
Starting block: 0
Source: /dev/sr0
Destination: diskimage
Current destination size: 863447424
.  8-( 93%
Done!
Recovered bad blocks: 0
Unrecoverable bad blocks (bytes): 0 (0)
Blocks (bytes) copied: 313339 (736973328)
_
2
Calimo

CDプレーヤーでジャンプし始めたCDを回復したいという同様の問題がありました。私は答えを見つけるためにオンラインで検索しましたが、役に立ちませんでした。しかし、実験してみると、復元されたファイルを生データとしてAudacityにインポートできることがわかりました。次に、トラックを分離して、必要に応じて再エンコードできます。

2
Dagey