Forrest logo
back to the ffprobe tool

ffprobe:tldr:ec841

ffprobe: Display all available stream info for a media file.
$ ffprobe -v error -show_entries ${input-mp4}
try on your machine

The command "ffprobe" is a command-line tool used to gather information from multimedia files. It is part of the FFmpeg software suite.

In this specific command, the following options and arguments are used:

  • "ffprobe": Calls the ffprobe tool.

  • "-v error": Specifies the verbosity level of the command. In this case, it is set to "error", which means only error messages will be shown while processing the file.

  • "-show_entries": Indicates that specific information from the input file should be shown.

  • "${input-mp4}": The location or path to the input file in MP4 format. The "${input-mp4}" is an example of using a variable in the command, and it should be replaced with the actual path to the MP4 file.

Overall, this command will use ffprobe to display only error messages and specific entries from the provided input MP4 file.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the ffprobe tool