typos in "WAV to MP3"

This commit is contained in:
Reto Kromer 2015-12-20 13:57:35 +01:00
parent 3f5c050a19
commit 8e53187fe1

View File

@ -96,14 +96,14 @@ Change the above data-target field, the button text, and the below div class (th
<div class="modal-content">
<div class="well">
<h3>WAV to MP3</h3>
<p><code>ffmpeg -i [inputfile.wav] -sample_fmt s16p -ar 44100 [outputfile.mp3]</code></p>
<p><code>ffmpeg -i <i>input_file</i>.wav -sample_fmt s16p -ar 44100 <i>output_file</i>.mp3</code></p>
<p>This will convert your wav files to mp3s.</p>
<dl>
<dt>ffmpeg</dt><dd>starts the command</dd>
<dt>-i <i>input file</i></dt><dd>path, name and extension of the input file</dd>
<dt>-i <i>input_file</i></dt><dd>path and name of the input file</dd>
<dt>-sample_fmt <i>s16p</i></dt><dd>sample format. This will give you 16 bit audio (To see a list of supported sample formats, type: <code>ffmpeg -sample_fmts</code>)</dd>
<dt>-ar <i>44100</i></dt><dd>Sets the audio sampling frequency to 44.1 kHz (CD quality). This can be omitted to use the same sampling frequency as the input</dd>
<dt><i>output file</i></dt><dd>path, name and extension of the output file</dd>
<dt><i>output_file</i></dt><dd>path and name of the output file</dd>
</dl>
</div>
</div>