AnalysisWithMSR commited on
Commit
318ea39
·
verified ·
1 Parent(s): 99452d5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -1,4 +1,8 @@
1
- import pkg_resources
2
 
3
- # Check version of youtube-transcript-api
4
- print(pkg_resources.get_distribution("youtube-transcript-api").version)
 
 
 
 
 
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
+ # Checking ffmpeg version
8
+ os.system('ffmpeg -version')