1

I'm trying to batch concat a outro video to multiple videos. I am just tetsing it using the following command: ffmpeg -i test.mp4 -i hello.mp4 -filter comp lex “[0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=n=2:v=1:a=1 [v] [a]” -map “[v]” -map “[a]” outpu t_video.mp4

However I get the following Error:

[NULL @ 04fc2c00] Unable to find a suitable output format for '[0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=n=2:v=1:a=1 [v] [a]' [0:v:0] [0:a:0] [1:v:0] [1:a:0] concat=n=2:v=1:a=1 [v] [a]: Invalid argument

2
  • @LordNeckbeard any suggestions as to how i can use this code or ffmpeg -f concat -i mylist.txt -c copy output.mp4 method to add outro to 100's of videos? Commented Aug 31, 2017 at 20:35
  • yes i upvoted. :) Commented Aug 31, 2017 at 22:34

1 Answer 1

5
  1. Change -filter complex to -filter_complex
  2. Replace the “smart / fancy” quotes with normal double quotes (").
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.