From 686f2158cc542302f9a86bb6a1f90dc022b4b6d0 Mon Sep 17 00:00:00 2001 From: Serdar Cevher Date: Sat, 25 Dec 2021 20:52:57 +0300 Subject: [PATCH] Convert audio without touching the video tip --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 248fa0e..6449b4a 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,10 @@ Download FFmpeg to your computer for Windows => https://github.com/BtbN/FFmpeg-B `ffmpeg -i source.mp4 -c copy -an sessiz.mp4` +
  • Converting the audio format (without reprocessing the video).

  • + +`ffmpeg -i source.mp4 -acodec mp3 -vcodec copy output.mp4` +
  • Making video from photo gallery.

  • `ffmpeg -f concat -i filelist.txt -i audio.mp3 -c:a copy output.mp4`