From e429024a7c664caaf8c2103986f2f79eb0da0317 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Mon, 5 Apr 2021 09:51:46 +0100 Subject: [PATCH] fix typos --- content/post/ffmpeg-scrapbook.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/post/ffmpeg-scrapbook.md b/content/post/ffmpeg-scrapbook.md index 4b94c36..eceb73c 100644 --- a/content/post/ffmpeg-scrapbook.md +++ b/content/post/ffmpeg-scrapbook.md @@ -28,7 +28,7 @@ ffmpeg -i {input-video}.mp4 -vcodec libx265 -crf 28 {output-video}.mp4 ### Extracting audio from video -For converting video to audo, so I can post it on your podcast: +For converting video to audo, so I can post it on my podcast: ``` ffmpeg -i input.mp4 -vn -ar 44100 -ac 2 -ab 128 -f mp3 output.mp3