From a1b7a452c8fb581da5658758f4dceb608990e96e Mon Sep 17 00:00:00 2001 From: Tycho Werner <34608981+TychoWerner@users.noreply.github.com> Date: Sun, 26 Feb 2023 12:30:02 +0100 Subject: [PATCH] Small FFMpeg typos --- convert.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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