====== Converting ATRAC files to other formats ====== ===== FFMPEG ===== The most powerful and flexible way to convert among various audio and video formats is [[https://ffmpeg.org/|FFmpeg]]. As a useful example, here is the Linux command to batch convert all of the AEA files in the current folder to WAV: for f in *.aea; do ffmpeg -i "$f" "${f%.aea}.wav"; done See FFmpeg's [[https://ffmpeg.org/documentation.html|extensive documentation]] for variations and instructions for other platforms. ===== VLC ===== [[https://www.videolan.org/vlc/|VLC]] provides a straightforward, GUI-based way to convert files. From the //Media// menu, choose //Convert/Save...// (Ctrl-R): {{ :guides:screenshot_2023-03-27_084533.png?400 |}} Add the files to be converted and select the target format. From the //Convert/Save// pulldown at the bottom, select //Convert// (Ctrl-O) and then //Start//: {{ :guides:screenshot_2023-03-27_085448.png?400 |}}