Spaces:
Sleeping
Sleeping
Update functions.py
Browse files- functions.py +2 -2
functions.py
CHANGED
@@ -31,7 +31,7 @@ def load_whisper_api(audio):
|
|
31 |
return transcript
|
32 |
|
33 |
@st.cache_data
|
34 |
-
def get_transcribe_podcast(rss_url, local_path='podcast'):
|
35 |
|
36 |
st.info("Starting Podcast Transcription Function...")
|
37 |
print("Feed URL: ", rss_url)
|
@@ -192,7 +192,7 @@ def get_podcast_highlights(podcast_transcript):
|
|
192 |
return podcastHighlights
|
193 |
|
194 |
@st.cache_data
|
195 |
-
def process_podcast(url, path='podcast'):
|
196 |
|
197 |
'''Get podcast transcription into json'''
|
198 |
|
|
|
31 |
return transcript
|
32 |
|
33 |
@st.cache_data
|
34 |
+
def get_transcribe_podcast(rss_url, local_path='podcast/'):
|
35 |
|
36 |
st.info("Starting Podcast Transcription Function...")
|
37 |
print("Feed URL: ", rss_url)
|
|
|
192 |
return podcastHighlights
|
193 |
|
194 |
@st.cache_data
|
195 |
+
def process_podcast(url, path='podcast/'):
|
196 |
|
197 |
'''Get podcast transcription into json'''
|
198 |
|