From 1b44b572f917a3defe2fbd57f56a80d64ab9cd2b Mon Sep 17 00:00:00 2001 From: Alexei Date: Mon, 24 Jul 2023 13:19:03 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D1=8A=D0=B5=D0=B4=D0=B8=D0=BD?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B2=D0=B8=D0=B4=D0=B5=D0=BE=20?= =?UTF-8?q?=D0=B8=20=D0=B0=D1=83=D0=B4=D0=B8=D0=BE=20=D0=B2=20=D0=BE=D0=B4?= =?UTF-8?q?=D0=BD=D0=BE=D0=BC=20=D1=84=D0=B0=D0=B9=D0=BB=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- video_tools/union_video_and_audio.bash | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 video_tools/union_video_and_audio.bash diff --git a/video_tools/union_video_and_audio.bash b/video_tools/union_video_and_audio.bash new file mode 100755 index 0000000..2af812a --- /dev/null +++ b/video_tools/union_video_and_audio.bash @@ -0,0 +1,3 @@ +#!/bin/bash +ffmpeg -i $1 -i $2 -c:a aac -b:a 128k -vcodec copy -map 0:v -map 1:a o.mp4 +