LoginSignup
2
0

More than 3 years have passed since last update.

FFMPEGで「Unknown decoder 'copy'」と出る場合はoptionの指定順序がおかしい

Last updated at Posted at 2019-09-28

原因

ffmpeg: Unknown decoder 'copy' #13にあるように、-iオプションの前にエンコードオプションをつけると発生する

解決策

/usr/bin/ffmpeg -vcodec copy -acodec copy -i "input.mp4" "output.mp4"

/usr/bin/ffmpeg -i "input.mp4" -vcodec copy -acodec copy "output.mp4"
2
0
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
0