diff --git a/convert.html b/convert.html index c1708c3..82e1d4d 100644 --- a/convert.html +++ b/convert.html @@ -99,7 +99,7 @@

WebM (or MKV/FLV) to MP4 (fixed 1280x720 resolution) (very slow!)

- The same as: fmpeg -i input.webm -vf scale="1280:720" output.mp4 + The same as: ffmpeg -i input.webm -vf scale="1280:720" output.mp4
@@ -113,14 +113,14 @@

WebM to Audio-only files (opus or wav)

- The same as: fmpeg -i input.webm -vn -acodec copy output.wav + The same as: ffmpeg -i input.webm -vn -acodec copy output.wav

MKV (or FLV/WebM) to MP4 (no transcoding)

- The same as: fmpeg -i INPUTFILE -vcodec copy -acodec copy output.mp4 + The same as: ffmpeg -i INPUTFILE -vcodec copy -acodec copy output.mp4