aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/watch.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube/watch.py')
-rw-r--r--youtube/watch.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/youtube/watch.py b/youtube/watch.py
index 3b71e75..e324115 100644
--- a/youtube/watch.py
+++ b/youtube/watch.py
@@ -214,3 +214,14 @@ def get_watch_page():
description = info['description'],
unlisted = info['unlisted'],
)
+
+
+@yt_app.route('/api/<path:dummy>')
+def get_captions(dummy):
+ result = util.fetch_url('https://www.youtube.com' + request.full_path)
+ result = result.replace(b"align:start position:0%", b"")
+ return result
+
+
+
+