We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02c660a commit bedd718Copy full SHA for bedd718
1 file changed
_includes/p2p_player.html
@@ -7,7 +7,8 @@
7
{% assign video_id = page.permalink | split: '/' | last %}
8
{% endif %}
9
10
- {% assign stream_url_prefix = site.theme_settings.p2p_player.media_urls[0] | append: '/' | append: video_id %}
+ {% assign media_urls = site.theme_settings.p2p_player.media_urls_overwrite | concat: site.theme_settings.p2p_player.media_urls %}
11
+ {% assign stream_url_prefix = media_urls[0] | append: '/' | append: video_id %}
12
{% assign stream_url = stream_url_prefix | append: "/main.m3u8" %}
13
{% assign thumbnail_url = stream_url_prefix | append: "/thumbnail.webp" %}
14
0 commit comments