Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,2 +1,10 @@
|
|
1 |
-
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
|
3 |
+
# Checking yt-dlp version
|
4 |
+
os.system('yt-dlp --version')
|
5 |
+
|
6 |
+
# Checking youtube-transcript-api (this needs to be done within Python)
|
7 |
+
os.system('python -c "import youtube_transcript_api; print(youtube_transcript_api.__version__)"')
|
8 |
+
|
9 |
+
# Checking ffmpeg version
|
10 |
+
os.system('ffmpeg -version')
|