2019-03-28 19:40:33 -04:00
|
|
|
{% capture video_id %}{{ include.id }}{% endcapture %}
|
|
|
|
{% capture video_provider %}{{ include.provider }}{% endcapture %}
|
2023-02-10 04:44:06 -05:00
|
|
|
{% capture video_danmaku %}{{ include.danmaku | default: 0 }}{% endcapture %}
|
2019-03-28 19:40:33 -04:00
|
|
|
|
2023-02-10 04:44:06 -05:00
|
|
|
{% capture video_src %}
|
|
|
|
{% case video_provider %}
|
|
|
|
{% when "vimeo" %}
|
|
|
|
https://player.vimeo.com/video/{{ video_id }}?dnt=true
|
|
|
|
{% when "youtube" %}
|
|
|
|
https://www.youtube-nocookie.com/embed/{{ video_id }}
|
|
|
|
{% when "google-drive" %}
|
|
|
|
https://drive.google.com/file/d/{{ video_id }}/preview
|
|
|
|
{% when "bilibili" %}
|
|
|
|
https://player.bilibili.com/player.html?bvid={{ video_id }}&page=1&as_wide=1&high_quality=1&danmaku={{ video_danmaku }}
|
|
|
|
{% endcase %}
|
|
|
|
{% endcapture %}
|
|
|
|
{% assign video_src = video_src | strip %}
|
|
|
|
|
|
|
|
<!-- Courtesy of embedresponsively.com -->
|
|
|
|
{% unless video_src == "" %}
|
|
|
|
<div class="responsive-video-container">
|
|
|
|
<iframe src="{{ video_src }}" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowfullscreen></iframe>
|
|
|
|
</div>
|
|
|
|
{% endunless %}
|