0

Using EAC I am storing FLAC files on a NAS drive. EAC rips a WAV file first then creates a FLAC file and then deletes the WAV file. When selecting the NAS drive for storage of the FLAC files, the WAV files are stored there too. To cut down unnecessary network traffic I would like to store the WAV files on the local disk instead, using the NAS solely for FLAC files.

Is there a way of doing this already in the software, or should I put a feature request in with the developers?

wonea
  • 1,877

1 Answers1

1

Try this:

  1. Under EAC menu / EAC Options / Directories set the WAV extraction directory to your local HDD:

    1

  2. Then go to EAC menu / Compression Options / External Compression and set it up as shown below:

    2
    3

  3. Be sure to specify the full path to Flac.exe (#4) and set Additional command-line options (#5) to something like the following (use the tags and other placeholders you prefer):

    -8 -V -T "TITLE=%title%" -T "ARTIST=%artist%" -T "ALBUMARTIST=%albumartist%" -T "ALBUM=%albumtitle%" -T "DATE=%year%" -T "TRACKNUMBER=%tracknr%" -T "TRACKTOTAL=%numtracks%" -T "GENRE=%genre%" -T "COMMENT=%comment%" -T "PERFORMER=%albuminterpret%" -T "COMPOSER=%composer%" %source% -o Drive:\Output_Path\%dest%

    The main thing to note here is the last parameter, i.e. -o Drive:\Output_Path\%dest%
    Set this path so that the encoded FLACs are stored on your NAS.

Karan
  • 57,289