You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
1.6KB

  1. All the numerical options, if not specified otherwise, accept in input
  2. a string representing a number, which may contain one of the
  3. International System number postfixes, for example 'K', 'M', 'G'.
  4. If 'i' is appended after the postfix, powers of 2 are used instead of
  5. powers of 10. The 'B' postfix multiplies the value for 8, and can be
  6. appended after another postfix or used alone. This allows using for
  7. example 'KB', 'MiB', 'G' and 'B' as postfix.
  8. @section Generic options
  9. These options are shared amongst the ff* tools.
  10. @table @option
  11. @item -L
  12. Show license.
  13. @item -h, -?, -help, --help
  14. Show help.
  15. @item -version
  16. Show version.
  17. @item -formats
  18. Show available formats.
  19. The fields preceding the format names have the following meanings:
  20. @table @samp
  21. @item D
  22. Decoding available
  23. @item E
  24. Encoding available
  25. @end table
  26. @item -codecs
  27. Show available codecs.
  28. The fields preceding the codec names have the following meanings:
  29. @table @samp
  30. @item D
  31. Decoding available
  32. @item E
  33. Encoding available
  34. @item V/A/S
  35. Video/audio/subtitle codec
  36. @item S
  37. Codec supports slices
  38. @item D
  39. Codec supports direct rendering
  40. @item T
  41. Codec can handle input truncated at random locations instead of only at frame boundaries
  42. @end table
  43. @item -bsfs
  44. Show available bitstream filters.
  45. @item -protocols
  46. Show available protocols.
  47. @item -filters
  48. Show available libavfilter filters.
  49. @item -pix_fmts
  50. Show available pixel formats.
  51. @item -loglevel @var{loglevel}
  52. Set the logging level used by the library.
  53. @var{loglevel} is a number or a string containing one of the following values:
  54. @table @samp
  55. @item quiet
  56. @item panic
  57. @item fatal
  58. @item error
  59. @item warning
  60. @item info
  61. @item verbose
  62. @item debug
  63. @end table
  64. @end table