@@ -147,7 +147,7 @@ coll.upload(url="https://www.youtube.com/watch?v=uak_dXHh6s4")
147147* ` coll.get_video(video_id) ` : Returns Video, respective video object from given ` video_id `
148148* ` coll.delete_video(video_id) ` : Deletes the video from Collection
149149
150- ### 📂 Search inside multiple videos in a collection
150+ ### 📂 Search inside collection
151151
152152You can simply Index all the videos in a collection and use
153153search method on collection to find relevant results.
@@ -164,19 +164,19 @@ results.play()
164164```
165165The result here has all the matching bits in a single stream from your collection. You can use these results in your application right away.
166166
167- ## 🌟 Explore more with Video object
167+ ### 🌟 Explore the Video object
168168
169169There are multiple methods available on a Video Object, that can be helpful for your use-case.
170170
171- ### Access Transcript
171+ ** Access Transcript**
172172``` python
173173# words with timestamps
174174text_json = video.get_transcript()
175175text = video.get_transcript_text()
176176print (text)
177177```
178178
179- ### Add Subtitle to a video
179+ ** Add Subtitle to a video**
180180
181181It returns a new stream instantly with subtitle added into the video.
182182``` python
@@ -185,7 +185,7 @@ play_stream(new_stream)
185185```
186186** Get Thumbnail of Video:**
187187
188- ` video.get_thumbnail () ` : Returns a thumbnail image of video.
188+ ` video.generate_thumbnail () ` : Returns a thumbnail image of video.
189189
190190** Delete a video:**
191191
@@ -217,12 +217,6 @@ Contributions are what make the open source community such an amazing place to b
217217
218218---
219219
220- <!-- LICENSE -->
221- ## License
222-
223- Distributed under the MIT License. See ` LICENSE ` for more information.
224-
225-
226220<!-- MARKDOWN LINKS & IMAGES -->
227221<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
228222[ pypi-shield ] : https://img.shields.io/pypi/v/videodb?style=for-the-badge
0 commit comments