Commit ·
7493194
1
Parent(s): c97d16c
print ffmpeg cmd
Browse files- hls_download.py +1 -1
hls_download.py
CHANGED
|
@@ -24,7 +24,7 @@ def download_clips(stream_url, out_dir, start_time, end_time, resize=True):
|
|
| 24 |
output_file
|
| 25 |
]
|
| 26 |
|
| 27 |
-
print(
|
| 28 |
|
| 29 |
try:
|
| 30 |
subprocess.run(ffmpeg_cmd, check=True, capture_output=True, text=True)
|
|
|
|
| 24 |
output_file
|
| 25 |
]
|
| 26 |
|
| 27 |
+
print([f'{x} ' for x in ffmpeg_cmd])
|
| 28 |
|
| 29 |
try:
|
| 30 |
subprocess.run(ffmpeg_cmd, check=True, capture_output=True, text=True)
|