From eee1e3d3895151e5c6ffa7aa00f6d4977f291258 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Dolata?= Date: Wed, 27 Jan 2021 11:44:11 +0100 Subject: [PATCH] Add example for assembling a video from numpy frames --- examples/README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/examples/README.md b/examples/README.md index dabc739..8fa32ce 100644 --- a/examples/README.md +++ b/examples/README.md @@ -97,6 +97,25 @@ With additional filtering: ) ``` +From a sequence of frames stored in memory (e.g. NumPy): + +```python +# You need to know the frame size (h, w) and pixel format (e.g. OpenCV uses 8-bit BGR, so 'bgr24'). +# For a complete list of pixel format codes run ffmpeg in terminal directly: 'ffmpeg -pix_fmts' +stream = ( + ffmpeg + .input('pipe:', format='rawvideo', pix_fmt='bgr24', s='{}x{}'.format(h, w)) + .output('movie.mp4', pix_fmt='yuv420p', r=60.0) + .run_async(pipe_stdin=True) +) +# Example below assumes each frame is stored as a NumPy array +for frame in frames: + data = frame.astype('uint8').tobytes() # whatever your source is - you need to convert data to bytes + stream.stdin.write(data) +stream.stdin.close() +stream.wait() +``` + ## Audio/video pipeline av-pipeline graph