File: aac.html

package info (click to toggle)
arista 0.9.7-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,160 kB
  • sloc: python: 3,616; sh: 20; makefile: 9
file content (31 lines) | stat: -rw-r--r-- 1,159 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html>
    <head>
        <link rel="stylesheet" type="text/css" href="style.css"/>
    </head>
    <body>
        <h1>AAC</h1>
        <p>The MPEG2 / MPEG4 audio codec. Comparable to Vorbis.</p>
        <div class="options">
            <h2>Options</h2>
            <ul>
                <li>
                    <strong>Bitrate</strong> (number)<br/>
                    Set a specific bitrate to control file size. Default is 128000.<br/>
                    <pre><code>bitrate=196000</code></pre>
                </li>
                <li>
                   <strong>Profile</strong>><br/>
                   Set the AAC encoding profile.<br/>
                   <ul>
                       <li>1: Main profile</li>
                       <li>2: Low complexity profile (worst, default)</li>
                       <li>3: Scalable sampling rate profile</li>
                       <li>4: Long term prediction profile (best)</li>
                   </ul>
                   <pre><code>profile=4</code></pre>
                </li>
            </ul>
        </div>
        <iframe src="common.html" scrolling="no" frameborder="0"></iframe>
    </body>
</html>