diff --git a/index.html b/index.html
index 54a17c8..c4f75f7 100644
--- a/index.html
+++ b/index.html
@@ -82,7 +82,7 @@ Change the above data-target field, the button text, and the below div class (th
Simpler GIF creation
ffmpeg -ss HH:MM:SS -i input_file -vf "fps=10,scale=500:-1" -t 3 -loop 6 output_file
- This is a quick and easy method. Dithering is more apparent than the above method using the palette* filters, but the file size will be smaller. Perfect for that "legacy" GIF look.
+ This is a quick and easy method. Dithering is more apparent than the above method using the palette* filters, but the file size will be smaller. Perfect for that “legacy” GIF look.
@@ -101,9 +101,9 @@ Change the above data-target field, the button text, and the below div class (th
- ffmpeg
- starts the command
- -i input_file
- path and name of the input file
- - -write_id3v1 1
- Write ID3v1 tag. This will add metadata to the old MP3 format, assuming you've embedded metadata into the WAV file.
- - -id3v2_version 3
- Write ID3v2 tag. This will add metadata to a newer MP3 format, assuming you've embedded metadata into the WAV file.
- - -dither_method modified_e_weighted
- Dither makes sure you don't unnecessarily truncate the dynamic range of your audio.
+ - -write_id3v1 1
- Write ID3v1 tag. This will add metadata to the old MP3 format, assuming you’ve embedded metadata into the WAV file.
+ - -id3v2_version 3
- Write ID3v2 tag. This will add metadata to a newer MP3 format, assuming you’ve embedded metadata into the WAV file.
+ - -dither_method modified_e_weighted
- Dither makes sure you don’t unnecessarily truncate the dynamic range of your audio.
- -out_sample_rate 48k
- Sets the audio sampling frequency to 48 kHz. This can be omitted to use the same sampling frequency as the input.
- -b:a 320k
- This sets the bit rate at the highest rate the mp3 format allows. Reduce this to 160k for mono files.
- output_file
- path and name of the output file