Merge pull request #440 from raulpy271/master

adding http server example
This commit is contained in:
Davide Depau 2020-12-03 17:01:40 +01:00 committed by GitHub
commit e044890010
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,6 +214,32 @@ process2.wait()
) )
``` ```
## Stream from a local video to HTTP server
```python
video_format = "flv"
server_url = "http://127.0.0.1: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 ## Stream from RTSP server to TCP socket
```python ```python