Difference between revisions of "NeroAAC"

From Hydrogenaudio Knowledgebase
Redirect page
Jump to: navigation, search
(Usage)
m (redirect, admin will have to merge histories)
 
(24 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[category:Encoder/Decoder]]
+
#REDIRECT [[Nero AAC]]
{{Software Infobox
+
| name = Nero AAC Codec
+
| logo =
+
| screenshot =
+
| caption =
+
| maintainer = Nero AG
+
| stable_release = 1.5.4.0 (Feb 18. 2010)
+
| preview_release = n/a
+
| operating_system = Windows, Linux
+
| use = Encoder/Decoder
+
| license = see site for license
+
| website = [http://www.nero.com/enu/technologies-aac-codec.html Nero AAC Codec]
+
}}
+
 
+
The Nero AAC codec has been made freely available by Nero AG for personal non-commercial and/or technology-evaluation purposes. It is a set of three command-line tools that are used to encode, decode and apply tags to MP4 files. The download contains binaries for both Windows and Linux. It is the same codec that is used in Nero's other, commercial products.
+
 
+
The three command-line tools are:
+
* NeroAacEnc
+
* NeroAacDec
+
* NeroAacTag
+
 
+
 
+
 
+
<span style="color:red">'''This article is still a work in progress'''</span>
+
 
+
== NeroAacEnc ==
+
 
+
This is the encoder command-line tool. It is currently at version 1.5.4.0 and was last updated Feb 18th, 2010.
+
 
+
=== Usage ===
+
 
+
Windows
+
<pre>neroAacEnc.exe [options] -if <input-file> -of <output-file></pre>
+
 
+
Linux:
+
<pre>./neroAacEnc [options] -if <input-file> -of <output-file></pre>
+
<small>Note: Make sure the binary is executable</small>
+
 
+
Where:
+
; <input-file>
+
:Path to source file to encode.<br>The file must be in Microsoft WAV format and contain PCM data.<br>Specify - to encode from stdin.<br>Note that multiple input files can be specified, they will be encoded together into a single output file with chapter marks indicating source file divisions.
+
; <output-file>
+
: Path to output file to encode to, in MP4 format.
+
 
+
==== Options: ====
+
 
+
Quality/bitrate control:
+
; -q <number>
+
: Enables "target quality" mode.<br><number> is a floating-point number in 0...1 range. (I.e. 0.5 or 0.75, etc.)
+
; -br <number>
+
: Specifies "target bitrate" mode.<br><number> is target bitrate in bits per second.
+
; -cbr <number>
+
: Specifies "target bitrate (streaming)" mode.<br><number> is target bitrate in bits per second.<br>When neither of above quality/bitrate options is used, the encoder defaults to equivalent of -q 0.5
+
 
+
Multipass encoding:
+
; -2pass
+
: Enables two-pass encoding mode.<br>Note that two-pass mode requires a physical file as input, rather than stdin.
+
; -2passperiod <number>
+
: Overrides two-pass encoding bitrate averaging period, in milliseconds.<br>Specify zero to use least restrictive value possible (default).
+
 
+
Advanced features / troubleshooting:
+
; -lc
+
: Forces use of LC AAC profile (HE features disabled).
+
; -he
+
: Forces use of HE AAC profile (HEv2 features disabled).
+
; -hev2
+
: Forces use of HEv2 AAC profile
+
 
+
''Note that the above switches (-lc, -he, -hev2) should not be used''; optimal AAC profile is automatically determined from quality/bitrate settings when no override is specified.
+
 
+
; -ignorelength
+
: Ignores length signaled by WAV headers of input file. Useful for certain frontends using stdin.
+

Latest revision as of 04:38, 23 July 2014