Westicle
Westicle

Reputation: 87

How do I use ffprobe in Terminal?

When I use ffmpeg I use it like this:

./ffmpeg -ss 00:30:00 -i inputvideo.mp4 -t 00:00:20 -c:v copy -c:a copy outputvideo.mp4

So how to I use ffprobe? I've tried this but I can't get it to work:

./ffmpeg ffprobe -v error -show_frames inputvideo.mp4

Upvotes: 0

Views: 200

Answers (1)

szatmary
szatmary

Reputation: 31100

ffprobe is a separate program from ffmpeg, not an ffmpeg parameter.

Upvotes: 1

Related Questions