-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Burning files copied by cdda2wav fails with error #38
Comments
(Github swallows the "*" above to format italics...) If you remove the "*.wav", I think cdrecord tries to burn the folder |
Using cdda2wav to read the disc and create the .inf and .wav files is working perfectly (after a few changes, which we can discuss later). |
After launching BurnItNow from a terminal and observing the log while cloning and burning it appears that problem is not in the BurnItNow code at all, but is somewhere else. |
PulkoMandy fixed the disc burning issue in the glob branch. I've tested it, and it's working. The displayed progress message might need a little tweaking. |
CompilationCloneView.cpp L#448 files.Append("/.wav");
cdrecord sees the append as part of the cloned files directory, rather than as the files to be burned
cdrecord: No such file or directory. Cannot open '/boot/system/cache/burnitnow_clone_wavs/.wav'.
CompilationCloneView.cpp L#448 files.Append("/");
If *.wav is removed, the cdrecord seems to find the files, but the error message changes to this:
cdrecord: Track 1 has unknown length.
cdrecord: Use tsize= option in SAO mode to specify track size.
pregap1: -1
Track 01: data unknown length
Opening a terminal and running cdrecord from the command line using the same parameters works correctly.
cdrecord dev=2,0 -v -dao -useinfo -text *.wav
The text was updated successfully, but these errors were encountered: