bofenghuang commited on
Commit
a251ba2
·
1 Parent(s): 8b95726
Files changed (1) hide show
  1. run_demo_multi_models.py +1 -1
run_demo_multi_models.py CHANGED
@@ -108,7 +108,7 @@ def yt_transcribe(yt_url, model_name):
108
  pipe = maybe_load_cached_pipeline(model_name)
109
  text = pipe("audio.mp3")["text"]
110
 
111
- logger.info(f"Transcription: {text}")
112
 
113
  return html_embed_str, text
114
 
 
108
  pipe = maybe_load_cached_pipeline(model_name)
109
  text = pipe("audio.mp3")["text"]
110
 
111
+ logger.info(f'Transcription by `{model_name}` of "{yt_url}": {text}')
112
 
113
  return html_embed_str, text
114