EnigmaOfTheWorld commited on
Commit
d9bed9c
·
1 Parent(s): 737941f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -10
app.py CHANGED
@@ -84,16 +84,18 @@ def gen_draw(user_query:str)->tuple:
84
 
85
 
86
  def vid_tube(user_query:str) -> tuple:
87
- py_tube_list_of_videos = Search(user_query)
88
- first_video = py_tube_list_of_videos.results[0]
89
- yt_flag = False
90
- for vid in py_tube_list_of_videos.results:
91
- print(vid.vid_info.keys())
92
- if vid.vid_info.get('streamingData'):
93
- print(vid.vid_info.keys(),'-')
94
- yt_flag = True
95
- file_path = vid.streams.get_highest_resolution().download('/tmp/')
96
- break
 
 
97
 
98
  return (file_path,) if yt_flag else "The system cannot fulfill your request currently please try later"
99
 
 
84
 
85
 
86
  def vid_tube(user_query:str) -> tuple:
87
+
88
+ video_id = Search(user_query).results[0].video_id
89
+ return f'<iframe width="560" height="315" src="https://www.youtube.com/embed/{video_id}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>'
90
+ # first_video = py_tube_list_of_videos.results[0]
91
+ # yt_flag = False
92
+ # for vid in py_tube_list_of_videos.results:
93
+ # print(vid.vid_info.keys())
94
+ # if vid.vid_info.get('streamingData'):
95
+ # print(vid.vid_info.keys(),'-')
96
+ # yt_flag = True
97
+ # file_path = vid.streams.get_highest_resolution().download('/tmp/')
98
+ # break
99
 
100
  return (file_path,) if yt_flag else "The system cannot fulfill your request currently please try later"
101