Answers for "how to em,ove sound from video in ffmpeg"

C#
0

how to remove audio from video ffmpeg

input_file=example.mkv
output_file=example-nosound.mkv

ffmpeg -i $input_file -c copy -an $output_file
Posted by: Guest on May-30-2021
0

ffmpeg add audio to video at specific time

ffmpeg -y -i a.mp4 -itsoffset 00:00:30 -i sng.m4a -map 0:0 -map 1:0 -c:v copy -preset ultrafast -async 1 out.mp4
Posted by: Guest on December-20-2020

C# Answers by Framework

Browse Popular Code Answers by Language