Recovering crashes manually
- Automatic Crash Recovery does not work correctly
- You saved a project without apparent crash, but Audacity was shut down before the AUP project file was written or you do not have a usable AUP file.
Contents
Location of the project _data folder
If you saved an AUP project file, the _data folder you need to recover from will be in the directory to which you originally saved the AUP file.
Location of Temporary Folder
If you never saved an AUP project file, you need to recover from Audacity's temporary folder. You can see the exact location in Directories Preferences, otherwise you can see the location in the "TempDir" line in the audacity.cfg settings file. By default the Audacity temporary folder should be as follows.
- Windows: C:\Users\<your username>\AppData\Local\Audacity\SessionData
- Mac: /Users/<your username>/Library/Application Support/audacity/SessionData
- GNU/Linux: /var/tmp/audacity-<your username>
If you are upgrading from previous Audacity, that version's temporary directory may be changed to the relevant safe location above if the previous location was known to be prone to deletion by cleanup applications or system restart.
In order to see the default location of the Audacity temp folder on Windows or Mac you need to show hidden files and folders or type the folder location into your file manager's address bar.
|
Manual recovery
If you only have a few AU files to recover, use the "Import Audio" command to open all the .au files from the Audacity temporary folder or project _data folder. Use shift-click or control-click to select multiple files. The files will be in approximately 6-second chunks and will be on separate tracks in the Audacity screen. Files from stereo tracks will alternate between left and right channels.
- Click in the Track Control Panel (by the Mute/Solo buttons) of the topmost track.
- Shortcut Z or .
- .
- Click in the Track Control Panel of the first track you want to join to the topmost track.
- Shortcut Z or .
- Shortcut Z or .
- Click after the end of the topmost track.
- Press End on the keyboard.
- Click and the cut track will attach to the end of the topmost track.
- Repeat as necessary to join all the tracks onto the topmost track.
Play the result.
Cut and paste as needed if any files are found to be in the wrong order or the wrong channel.
Automatic recovery tools
Tools written for legacy Audacity 1.2 can automate data recovery.
All these utilities require the .au files to be input in consecutive alphanumerical order. Audacity names files randomly so files will need to renamed. |
Open Audacity's temporary or project _data folder in your system file manager. Sort the files by timestamp order (earliest first), then rename them using a consecutive alphanumerical sequence, lowest number first. An arrangement looking something like this should work:
- b001.au 15:56:02
- b002.au 15:56:02
- b003.au 15:56:10
- b004.au 15:56:10
- On Windows, Explorer cannot rename to a sequence acceptable to the recovery tools. You can use instead the Mass Rename tool in the 21-day trial Professional or Ultimate versions of xplorer2. These versions will let you recover an unedited stereo recording with exact allocation of left and right channels, if Windows is running the NTFS file system. The free version of xplorer2 cannot guarantee correct channel allocation.
- (only in the Professional and Ultimate versions) Click to enable maximum date resolution.
- Open the required folder in xplorer2 and sort the .au files by time modified as above.
- Ctrl + A to select all the files.
- File > Mass Rename.
- In the "Mass Rename Wizard", click in "Target name template" and type the letter e with a $ after the letter. For example, e$0001.au will rename the files to e0001.au, e0002.au and so on. Use enough zeros in the file name so that all the .au files will have the same number of digits.
- Press "Preview", and if the preview looks correct, hit "Rename"
- On Mac, try Applications > Automator.
- On Linux, try the file manager Thunar included in the xfce desktop See here for help running Thunar on the Ubuntu desktop.
- Open a terminal then "cd" into the directory that contains the .AU files.
- Type the following command in a terminal to sort and rename the files into numerical timestamp order:
mkdir "renamed" | find -type f -name "*.au" -printf "cp %h/%f renamed/%h/%TY%Tm%Td-%TH%TM%TS_%f\n"|sh - The file names produced in the "renamed" folder are not in a consecutive sequence suitable for the Audacity recovery utilities. Instead, use the Nyquist plug-in Append Import to import the files end-to-end into Audacity automatically in file name order.
Limitations of automatic recovery utilities
- There is a 2 GB maximum size for any WAV file created from the reconstructed temporary files. This implies no more than 2000 .au files can be recovered. Sometimes (probably due to bugs in the utilities) there can be errors when recovering only 1000 or so files. In that case you would need to split the .au files in the temporary or_data folder into two or more folders, each containing consecutively numbered files, and recover a separate WAV file from each folder.
- Recovery of unedited mono recordings should be correct in most cases.
- Recovery of unedited stereo recordings may recover with transposed left/right channels in places. Channel allocation will only be correct if you are using the NTFS (Windows) or ext 4 (Linux) file system and if your file manager supports sufficiently fine date resolution (see the Windows example above). This is because the files for each channel may have timestamps that are too close together to be correctly distinguished by other file systems.
- If any of the project data has been edited, it is unlikely to recover correctly.
Other Tools / scripts
File merge tools
- It has been reported that AU files may be converted to WAV (for example in Audacity) then joined using the disk output utility in Winamp.
Scripts for GNU/Linux and Mac
audacity_rescue.sh
This shell script can reassemble a few thousand .au files. It may be simpler to apply (at a bash terminal) than some of the solutions mentioned on this page, particularly for mono recordings.
SoX
- Using SoX, make a copy of the temp directory and its files from a mono recording:
$ cp -r /tmp/audacity1.2-jbn ~/rescue - Convert the AU files into raw (headerless) files. The files must already be time-sorted and numbered with leading zeroes:
$ for f in *.au ; do sox ${f} -t raw ${f}.raw ; done - Concatenate the raw files together to make one long raw file. Concatenating the AU files together (each with its own header) would produce noise at the joins between each AU file.
$ cat *.raw > bigfile.raw - Finally, import the raw file into Audacity specifying the appropriate encoding, endianness, channels and sample rate.