alptangall commited on
Commit
bb80cd7
·
verified ·
1 Parent(s): 3e3a942

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -2
main.py CHANGED
@@ -9,7 +9,7 @@ def start_livestream(video_path):
9
  "ffmpeg",
10
  "-re",
11
  "-stream_loop", "-1",
12
- "-i", 'video.mp4',
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')