summaryrefslogtreecommitdiff
path: root/searx/engines
diff options
context:
space:
mode:
Diffstat (limited to 'searx/engines')
-rw-r--r--searx/engines/360search_videos.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/searx/engines/360search_videos.py b/searx/engines/360search_videos.py
index a4a59223d..27b3781b4 100644
--- a/searx/engines/360search_videos.py
+++ b/searx/engines/360search_videos.py
@@ -6,7 +6,7 @@ from urllib.parse import urlencode
from datetime import datetime
from searx.exceptions import SearxEngineAPIException
-from searx.utils import html_to_text
+from searx.utils import html_to_text, get_embeded_stream_url
about = {
"website": "https://tv.360kan.com/",
@@ -58,6 +58,7 @@ def response(resp):
'template': 'videos.html',
'publishedDate': published_date,
'thumbnail': entry["cover_img"],
+ "iframe_src": get_embeded_stream_url(entry["play_url"]),
}
)