From 18c236e1b0216149204b4404d423d95db4731914 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Sun, 9 Jul 2023 22:13:55 +0300 Subject: [PATCH] ffplay: add more examples (#10457) Co-authored-by: K.B.Dharun Krishna Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/common/ffplay.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pages/common/ffplay.md b/pages/common/ffplay.md index 5021d8b6f3..8e42ba169d 100644 --- a/pages/common/ffplay.md +++ b/pages/common/ffplay.md @@ -7,6 +7,14 @@ `ffplay {{path/to/file}}` +- Play audio from a media file without a GUI: + +`ffplay -nodisp {{path/to/file}}` + +- Play media passed by `ffmpeg` through `stdin`: + +`ffmpeg -i {{path/to/file}} -c {{copy}} -f {{media_format}} - | ffplay -` + - Play a video and show motion vectors in real time: `ffplay -flags2 +export_mvs -vf codecview=mv=pf+bf+bb {{path/to/file}}`