video 985 B

123456789101112131415161718192021222324
  1. {% capture video_id %}{{ include.id }}{% endcapture %}
  2. {% capture video_provider %}{{ include.provider }}{% endcapture %}
  3. {% capture video_danmaku %}{{ include.danmaku | default: 0 }}{% endcapture %}
  4. {% capture video_src %}
  5. {% case video_provider %}
  6. {% when "vimeo" %}
  7. https://player.vimeo.com/video/{{ video_id }}?dnt=true
  8. {% when "youtube" %}
  9. https://www.youtube-nocookie.com/embed/{{ video_id }}
  10. {% when "google-drive" %}
  11. https://drive.google.com/file/d/{{ video_id }}/preview
  12. {% when "bilibili" %}
  13. https://player.bilibili.com/player.html?bvid={{ video_id }}&page=1&as_wide=1&high_quality=1&danmaku={{ video_danmaku }}
  14. {% endcase %}
  15. {% endcapture %}
  16. {% assign video_src = video_src | strip %}
  17. <!-- Courtesy of embedresponsively.com //-->
  18. {% unless video_src == "" %}
  19. <div class="responsive-video-container">
  20. <iframe src="{{ video_src }}" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowfullscreen></iframe>
  21. </div>
  22. {% endunless %}