nickmuchi commited on
Commit
e6f0637
·
verified ·
1 Parent(s): 0cd2596

Update functions.py

Browse files
Files changed (1) hide show
  1. functions.py +2 -0
functions.py CHANGED
@@ -42,6 +42,8 @@ def get_transcribe_podcast(rss_url, local_path):
42
  p.mkdir(exist_ok=True)
43
 
44
  st.info("Downloading the podcast episode...")
 
 
45
 
46
  with requests.get(rss_url, stream=True) as r:
47
  r.raise_for_status()
 
42
  p.mkdir(exist_ok=True)
43
 
44
  st.info("Downloading the podcast episode...")
45
+
46
+ episode_name = "podcast_episode.mp3"
47
 
48
  with requests.get(rss_url, stream=True) as r:
49
  r.raise_for_status()