From 97e5afb88acbb1715f6348ee9be24d50f0ca0cbc Mon Sep 17 00:00:00 2001 From: luantsai Date: Thu, 7 Nov 2024 21:38:33 +0800 Subject: [PATCH] correct -re argument in example readme --- examples/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/README.md b/examples/README.md index dabc7398..cf752c83 100644 --- a/examples/README.md +++ b/examples/README.md @@ -222,13 +222,12 @@ server_url = "http://127.0.0.1:8080" process = ( ffmpeg - .input("input.mp4") + .input("input.mp4", re=None) # argument to act as a live stream .output( server_url, codec = "copy", # use same codecs of the original video listen=1, # enables HTTP server f=video_format) - .global_args("-re") # argument to act as a live stream .run() )