Sha256: 5c7d5e0d80827019f1773620933ce9ab1c4395863a20196b6126ed82b8da21db

Contents?: true

Size: 1.42 KB

Versions: 7

Compression:

Stored size: 1.42 KB

Contents

<% if display_media_download_link?(file_set: file_set) %>
  <div>
      <h2 class="sr-only"><%= t('hyrax.file_set.show.downloadable_content.heading') %></h2>
      <video controls="controls" class="video-js vjs-default-skin" style="width:100%" data-setup="{}" controlsList="nodownload" preload="auto">
        <source src="<%= hyrax.download_path(file_set, file: 'webm', mime_type: 'video/webm') %>" type="video/webm" />
        <source src="<%= hyrax.download_path(file_set, file: 'mp4', mime_type: 'video/mp4') %>" type="video/mp4" />
        <%= t('hyrax.file_set.show.downloadable_content.video_tag_not_supported') %>
      </video>
      <%= link_to t('hyrax.file_set.show.downloadable_content.video_link'),
                  hyrax.download_path(file_set),
                  data: { label: file_set.id.to_s, work_id: @presenter.id, collection_ids: @presenter.member_of_collection_ids },
                  target: :_blank,
                  id: "file_download" %>
    </div>
<% else %>
    <div>
      <video controls="controls" class="video-js vjs-default-skin" style="width:100%" data-setup="{}" controlsList="nodownload" preload="auto">
        <source src="<%= hyrax.download_path(file_set, file: 'webm') %>" type="video/webm" />
        <source src="<%= hyrax.download_path(file_set, file: 'mp4') %>" type="video/mp4" />
        <%= t('hyrax.file_set.show.downloadable_content.video_tag_not_supported') %>
      </video>
    </div>
<% end %>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hyrax-5.1.0.pre.beta1 app/views/hyrax/file_sets/media_display/_video.html.erb
hyrax-5.0.4 app/views/hyrax/file_sets/media_display/_video.html.erb
hyrax-5.0.3 app/views/hyrax/file_sets/media_display/_video.html.erb
hyrax-5.0.2 app/views/hyrax/file_sets/media_display/_video.html.erb
hyrax-5.0.1 app/views/hyrax/file_sets/media_display/_video.html.erb
hyrax-5.0.0 app/views/hyrax/file_sets/media_display/_video.html.erb
hyrax-5.0.0.rc3 app/views/hyrax/file_sets/media_display/_video.html.erb