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