Spaces:
Sleeping
Sleeping
vd
Browse files
app.py
CHANGED
@@ -17,6 +17,7 @@ def get_video(url):
|
|
17 |
url = url
|
18 |
output_dir = '.'
|
19 |
command = f'you-get -o {output_dir} {url}'
|
|
|
20 |
subprocess.call(command, shell=True)
|
21 |
|
22 |
mp4_files = [] # 用于存储所有找到的 mp4 文件名
|
@@ -27,6 +28,7 @@ def get_video(url):
|
|
27 |
if filename.endswith('.mp4'):
|
28 |
# 如果是,将文件名添加到 mp4_files 列表中
|
29 |
mp4_files.append(filename)
|
|
|
30 |
return mp4_files[0]
|
31 |
|
32 |
|
|
|
17 |
url = url
|
18 |
output_dir = '.'
|
19 |
command = f'you-get -o {output_dir} {url}'
|
20 |
+
print(command)
|
21 |
subprocess.call(command, shell=True)
|
22 |
|
23 |
mp4_files = [] # 用于存储所有找到的 mp4 文件名
|
|
|
28 |
if filename.endswith('.mp4'):
|
29 |
# 如果是,将文件名添加到 mp4_files 列表中
|
30 |
mp4_files.append(filename)
|
31 |
+
print(mp4_files)
|
32 |
return mp4_files[0]
|
33 |
|
34 |
|