2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ffmpeg の filter 使っているとき、 No such filter: '' っていわれたときの解消方法 ヽ(゚ー゚*ヽ)(ノ*゚ー゚)ノわぁい

Posted at

ときどきミスしてやってしまうのでメモ。

現象

No such filter: ''

ってエラーメッセージが出る

原因

-filter_complex の記述をみすってます。

ffmpeg -i input.mp4 -i input.mp4 -filter_complex "[0:v]scale=640:640[out1];[out1][1:v]overlay=0:0[out2];" sample_out.mp4

とか、こんな感じで、うっかりセミコロンつけて、そのあとを空にしてしまうと、件名のエラーメッセージが出て怒られます。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?