cstr commited on
Commit
4b28052
1 Parent(s): af4f18a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -117,7 +117,7 @@ def yt_dlp_method(url):
117
  Returns:
118
  str: Path to the downloaded audio file, or None if failed.
119
  """
120
- logging.info("Using yt-dlp method")
121
  temp_dir = tempfile.mkdtemp()
122
  output_template = os.path.join(temp_dir, '%(id)s.%(ext)s')
123
  ydl_opts = {
 
117
  Returns:
118
  str: Path to the downloaded audio file, or None if failed.
119
  """
120
+ logging.info(f"Using yt-dlp {yt_dlp.version.version} method")
121
  temp_dir = tempfile.mkdtemp()
122
  output_template = os.path.join(temp_dir, '%(id)s.%(ext)s')
123
  ydl_opts = {