diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-02-16 07:22:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-16 07:22:20 +0100 |
commit | 9dbae6e8a120fc18fdc007503375b53f6b061b8f (patch) | |
tree | cf0a3ceee2a1a0c4c1f1418ac9668992465bdfeb /app/views/media | |
parent | 1122579216a0ba6d081ff9ad14a1b501636f9601 (diff) |
Save video metadata and improve video OpenGraph tags (#6481)
* Save metadata from video attachments, put correct dimensions into OG tags * Add twitter:player for videos * Fix code style and test
Diffstat (limited to 'app/views/media')
-rw-r--r-- | app/views/media/player.html.haml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/media/player.html.haml b/app/views/media/player.html.haml new file mode 100644 index 000000000..ea868b3f6 --- /dev/null +++ b/app/views/media/player.html.haml @@ -0,0 +1,2 @@ +%video{ poster: @media_attachment.file.url(:small), preload: 'auto', autoplay: 'autoplay', muted: 'muted', loop: 'loop', controls: 'controls', style: "width: #{@media_attachment.file.meta.dig('original', 'width')}px; height: #{@media_attachment.file.meta.dig('original', 'height')}px" } + %source{ src: @media_attachment.file.url(:original), type: @media_attachment.file_content_type } |