From 39c87b0358306370b022b7fbf967233f52ffc496 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Fri, 29 Oct 2021 02:49:35 +0300 Subject: [PATCH] ffplay: add page (#7270) * ffplay: add page * backtick * Update pages/common/ffplay.md Co-authored-by: Muhammad Falak R Wani Co-authored-by: Muhammad Falak R Wani --- pages/common/ffplay.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/ffplay.md diff --git a/pages/common/ffplay.md b/pages/common/ffplay.md new file mode 100644 index 000000000..5021d8b6f --- /dev/null +++ b/pages/common/ffplay.md @@ -0,0 +1,16 @@ +# ffplay + +> A simple and portable media player using the FFmpeg libraries and the SDL library. +> More information: . + +- Play a media file: + +`ffplay {{path/to/file}}` + +- Play a video and show motion vectors in real time: + +`ffplay -flags2 +export_mvs -vf codecview=mv=pf+bf+bb {{path/to/file}}` + +- Show only video keyframes: + +`ffplay -vf select="{{eq(pict_type\,PICT_TYPE_I)}}" {{path/to/file}}`