Difference between revisions of "EAC and AAC"

From Hydrogenaudio Knowledgebase
Jump to: navigation, search
m (Configuration)
m (Configuration)
Line 34: Line 34:
 
  /c C:\path\to\neroaacenc.exe -q 0.425 -if %s -of %d && C:\path\to\Neroaactag.exe %d -  meta:artist="%a" -meta:album="%g" -meta:track="%n" -meta:title="%t" -meta:genre="%m" -meta:year="%y"
 
  /c C:\path\to\neroaacenc.exe -q 0.425 -if %s -of %d && C:\path\to\Neroaactag.exe %d -  meta:artist="%a" -meta:album="%g" -meta:track="%n" -meta:title="%t" -meta:genre="%m" -meta:year="%y"
  
You need to substitute '''path''' and '''to''' to wherever you have placed the executable above. The above code invokes the windows command-line and tells EAC how to properly encode and tag your files. You can replace the '''-q''' value with a value from 0.05 to 0.96 (any fractions in between) for what bitrate corresponds with what quality level [http://www.hydrogenaudio.org/forums/index.php?showtopic=44310 read here]  
+
You need to substitute '''path''' and '''to''' to wherever you have placed the executable above. The above code invokes the windows command-line and tells EAC how to properly encode and tag your files. You can replace the '''-q''' value with a value from 0.05 to 0.95 (any fractions in between are acceptable) for what bitrate corresponds with what quality level [http://www.hydrogenaudio.org/forums/index.php?showtopic=44310 read here]  
  
 
IMAGE NEEDED   
 
IMAGE NEEDED   
  
== External links ==  
+
== External links ==
 +
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=44310 Sticky thread] this thread show's you how to use Nero AAC encoder with various program for Windows.
 
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=44275&st=0 Forum thread of first release of Nero AAC encoder]
 
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=44275&st=0 Forum thread of first release of Nero AAC encoder]

Revision as of 02:14, 30 July 2008

This page is a compression gude for configuring Nero AAC encoder with EAC for greater encoding flexibility. This guide will allow you to create Nero AAC files that will be compatible with ITunes and your IPod or any other digital audio player.

Software Needed

Installation

Note: This guide assumes that EAC is has been configured for secure ripping, if not please follow this guide.

Configuration

  • Open EAC and insert a CD into the drive.
  • Click the EAC menu and select Compression Options.
  • Click the External Compression Tab, and put a check box in use external program for compression.
  • Change Parameter Passing Scheme to User Defined Encoder.
  • Change Use file extension to .m4a

Note: Remember to use .m4a extension so that ITunes can read your metadata tags!

  • Click the Browse button and locate the neroaacenc.exe that you unzipped earlier.
  • Remove the ticks from Use CRC check, Add ID3 tag and check for external programs return code.
  • In the Additional command line options box, copy and paste one of the below strings based on the Tag you would prefer.

No Tags:

-q 0.5 -if %s -of %d

Metadata Tags:

Note: The information is below is incomplete and needs to verified correctly

User defined encoder: C:\Windows\system32\cmd.exe
additional commands:
/c C:\path\to\neroaacenc.exe -q 0.425 -if %s -of %d && C:\path\to\Neroaactag.exe %d -   meta:artist="%a" -meta:album="%g" -meta:track="%n" -meta:title="%t" -meta:genre="%m" -meta:year="%y"

You need to substitute path and to to wherever you have placed the executable above. The above code invokes the windows command-line and tells EAC how to properly encode and tag your files. You can replace the -q value with a value from 0.05 to 0.95 (any fractions in between are acceptable) for what bitrate corresponds with what quality level read here

IMAGE NEEDED

External links