forked from nathanbabcock/ffmpeg-sidecar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ffplay_preview.rs
42 lines (37 loc) · 917 Bytes
/
ffplay_preview.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
use std::{
io::{Read, Write},
process::{Command, Stdio},
};
use ffmpeg_sidecar::command::FfmpegCommand;
/// Pipe from ffmpeg to ffplay for debugging purposes
///
/// ```console
/// cargo run --example ffplay_preview
/// ```
fn main() {
let mut ffmpeg = FfmpegCommand::new()
.realtime()
.format("lavfi")
.input("testsrc=size=1920x1080:rate=60")
.codec_video("rawvideo")
.format("avi")
.output("-")
.spawn()
.unwrap();
let mut ffplay = Command::new("ffplay")
.args("-i -".split(' '))
.stdin(Stdio::piped())
.spawn()
.unwrap();
let mut ffmpeg_stdout = ffmpeg.take_stdout().unwrap();
let mut ffplay_stdin = ffplay.stdin.take().unwrap();
// pipe from ffmpeg stdout to ffplay stdin
let buf = &mut [0u8; 4096];
loop {
let n = ffmpeg_stdout.read(buf).unwrap();
if n == 0 {
break;
}
ffplay_stdin.write_all(&buf[..n]).unwrap();
}
}