Sign in with
Sign up | Sign in
Your question

How can i create ffmpeg code with video and audio filter in one command line

Tags:
  • Command Line
  • Filter
  • MP4
  • Video
  • Graphics
  • Audio
September 15, 2014 5:35:26 AM



i can add a background image behind the video and change scale and position with this code

  1. ffmpeg -loop 1 -i 360.png -i input.mp4 -filter_complex "[1]scale=362:218[over]; [0][over]overlay=200:117" -shortest -y output.mp4


and i can change audio and volume speed %10 faster

  1. ffmpeg -i input.mp4 -filter_complex "[0:v]setpts=0.9*PTS[v]; [0:a]atempo=1.1[a]" -map "[v]" -map "[a]" output.mp4


i wanna do this 2 step in one code but i couldn't do that

Do you know any solution?

More about : create ffmpeg code video audio filter command line

!