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