From 15ffcc0c7275443e2c4f13e3e4a9ebd6dd5503dc Mon Sep 17 00:00:00 2001 From: Raul Date: Fri, 30 Oct 2020 18:41:59 -0300 Subject: [PATCH 1/2] 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 From 5b6b58308fc81e8671e433f340f8648b081a2b5b Mon Sep 17 00:00:00 2001 From: raulpy271 <56479285+raulpy271@users.noreply.github.com> Date: Wed, 2 Dec 2020 14:19:53 -0300 Subject: [PATCH 2/2] Replacing `server_url` content, `"http://localhost:8080"` to `"http://127.0.0.1:8080"`. --- examples/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/README.md b/examples/README.md index 68fd8c0..dabc739 100644 --- a/examples/README.md +++ b/examples/README.md @@ -218,7 +218,7 @@ process2.wait() ```python video_format = "flv" -server_url = "http://localhost:8080" +server_url = "http://127.0.0.1:8080" process = ( ffmpeg