The HTML <video> tag reduces the bandwidth massively compared to the <iframe>.
When a video is embedded in a <iframe>, control over that video transfers to the
<iframe>. The <iframe> downloads the entire video. With the <video> tag,
control stays in the main frame and only the passages that the user chooses are
downloaded.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Embedded HTML breaks SearXNG architecture. To modularize, HTML is generated in
the templates (oscar & simple) and result parameter 'embedded' is replaced by
'data_src', an URL for embedded content (<iframe>).
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>