Browse Source

[fix] tagesschau videos

jazzzooo 1 year ago
parent
commit
7dfcc3386e
1 changed files with 2 additions and 1 deletions
  1. 2 1
      searx/engines/tagesschau.py

+ 2 - 1
searx/engines/tagesschau.py

@@ -83,7 +83,8 @@ def _story(item):
 
 
 def _video(item):
-    video_url = item['streams']['h264s']
+    streams = item['streams']
+    video_url = streams.get('h264s') or streams.get('h264m') or streams.get('h264l') or streams.get('h264xl')
     title = item['title']
 
     if "_vapp.mxf" in title: