From 15ffcc0c7275443e2c4f13e3e4a9ebd6dd5503dc Mon Sep 17 00:00:00 2001 From: Raul Date: Fri, 30 Oct 2020 18:41:59 -0300 Subject: [PATCH] adding http server example --- examples/README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/examples/README.md b/examples/README.md index 190b897..68fd8c0 100644 --- a/examples/README.md +++ b/examples/README.md @@ -214,6 +214,32 @@ process2.wait() ) ``` +## Stream from a local video to HTTP server + +```python +video_format = "flv" +server_url = "http://localhost:8080" + +process = ( + ffmpeg + .input("input.mp4") + .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() +) + +``` + +to receive the video you can use ffplay in the terminal: + +``` +$ ffplay -f flv http://localhost:8080 +``` + ## Stream from RTSP server to TCP socket ```python