💻 Software
How can I pipe output of ffmpeg to ffplay?
Fresh5 days ago
Mar 15, 2026159490 viewsConfidence Score0%
0%
Problem
How can I pipe the output of ffmpeg to ffplay? At the moment I use a workaround in bash :
Error Output
mkfifo spam (ffplay spam 2> /dev/null &) ; capture /dev/stdout | ffmpeg -i - spam
Unverified for your environment
Select your OS to check compatibility.
1 Fix
Canonical Fix
Unverified Fix
New Fix – Awaiting Verification
Fix for: How can I pipe output of ffmpeg to ffplay?
Low Risk
will work; you need to set a container format for the output. This is normally set with ffmpeg looking at the extension you give the output, but here you have to set it manually with . I recommend matroska (MKV) because it can contain almost any vid…
Awaiting Verification
Be the first to verify this fix
Sign in to verify this fix