aichina commited on
Commit
741f9c4
1 Parent(s): 11a2742
Files changed (1) hide show
  1. app.py +2 -0
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