Merge pull request #14137 from annando/issue-14132

Issue 14132: Title for videos
This commit is contained in:
Tobias Diekershoff 2024-05-10 08:02:45 +02:00 committed by GitHub
commit e7b9d97672
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 8 deletions

View file

@ -3695,6 +3695,7 @@ class Item
'mime' => (string)$PostMedia->mimetype,
'height' => $height,
'width' => $width,
'description' => $PostMedia->description,
],
]);
if (($item['post-type'] ?? null) == Item::PT_VIDEO) {

View file

@ -1,6 +1,6 @@
<div class="video-top-wrapper lframe" id="video-top-wrapper-{{$video.id}}">
{{* set preloading to none to lessen the load on the server *}}
<video src="{{$video.src}}" controls {{if $video.preview}}preload="none" poster="{{$video.preview}}" {else}preload="metadata" {{/if}}width="{{$video.width}}" height="{{$video.height}}">
<video src="{{$video.src}}" controls {{if $video.preview}}preload="none" poster="{{$video.preview}}" {else}preload="metadata" {{/if}}width="{{$video.width}}" height="{{$video.height}}" title="{{$video.description}}">
<a href="{{$video.src}}">{{$video.name}}</a>
</video>