mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Merge 97e5afb88acbb1715f6348ee9be24d50f0ca0cbc into df129c7ba30aaa9ffffb81a48f53aa7253b0b4e6
This commit is contained in:
commit
f4bc7b0342
@ -222,13 +222,12 @@ server_url = "http://127.0.0.1:8080"
|
|||||||
|
|
||||||
process = (
|
process = (
|
||||||
ffmpeg
|
ffmpeg
|
||||||
.input("input.mp4")
|
.input("input.mp4", re=None) # argument to act as a live stream
|
||||||
.output(
|
.output(
|
||||||
server_url,
|
server_url,
|
||||||
codec = "copy", # use same codecs of the original video
|
codec = "copy", # use same codecs of the original video
|
||||||
listen=1, # enables HTTP server
|
listen=1, # enables HTTP server
|
||||||
f=video_format)
|
f=video_format)
|
||||||
.global_args("-re") # argument to act as a live stream
|
|
||||||
.run()
|
.run()
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user