File: mp2.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 (32 lines) | stat: -rw-r--r-- 1,178 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
32
<html>
    <head>
        <link rel="stylesheet" type="text/css" href="style.css"/>
    </head>
    <body>
        <h1>MP2</h1>
        <p>MPEG1 Layer 2 audio, later replaced by MP3, is used on video DVDs.</p>
        <div class="options">
            <h2>Options</h2>
            <ul>
                <li>
                    <strong>Bitrate</strong> (number)<br/>
                    Set a specific bitrate in kbps to control file size. Default is 192.<br/>
                    <pre><code>bitrate=256</code></pre>
                </li>
                <li>
                    <strong>Mode</strong><br/>
                    Set the encoding mode.<br/>
                    <ul>
                        <li>auto: select automatically</li>
                        <li>stereo: stereo</li>
                        <li>joint: joint stereo (default)</li>
                        <li>dual: dual channel</li>
                        <li>mono: mono</li>
                    </ul>
                    <pre><code>mode=stereo</code></pre>
                </li>
            </ul>
        </div>
        <iframe src="common.html" scrolling="no" frameborder="0"></iframe>
    </body>
</html>