0

Is it possible to get a list of parameter values used in libx264 while encoding a stream? I am using a ffmpeg binary to encode.

melih
  • 370
  • 1
  • 4
  • 15

1 Answers1

1

I am going to answer my own question: Just check the the console output during encoding. ffmpeg will show libx264 parameters as a string.

For finished videos use strings command:

$ strings output.mkv | grep x264
llogan
  • 121,796
  • 28
  • 232
  • 243
melih
  • 370
  • 1
  • 4
  • 15