Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
@@ -9,7 +9,7 @@ def start_livestream(video_path):
|
|
9 |
"ffmpeg",
|
10 |
"-re",
|
11 |
"-stream_loop", "-1",
|
12 |
-
"-i",
|
13 |
"-c:v", "libx264",
|
14 |
"-preset", "veryfast",
|
15 |
"-maxrate", "3000k",
|
@@ -25,4 +25,4 @@ def start_livestream(video_path):
|
|
25 |
]
|
26 |
return subprocess.Popen(ffmpeg_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
27 |
if __name__ == "__main__":
|
28 |
-
start_livestream()
|
|
|
9 |
"ffmpeg",
|
10 |
"-re",
|
11 |
"-stream_loop", "-1",
|
12 |
+
"-i", video_path,
|
13 |
"-c:v", "libx264",
|
14 |
"-preset", "veryfast",
|
15 |
"-maxrate", "3000k",
|
|
|
25 |
]
|
26 |
return subprocess.Popen(ffmpeg_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
27 |
if __name__ == "__main__":
|
28 |
+
start_livestream('video.mp4')
|