From 72fa4e99702cf2a745b9f742e5fefe9527c44e7d Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 14 Sep 2021 07:52:53 +0000 Subject: [PATCH 1/2] Better handling of displaying peertube videos --- src/Model/Post/Media.php | 33 +++++++++++++++++++++------------ 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/src/Model/Post/Media.php b/src/Model/Post/Media.php index ada1cc070a..087a36cb16 100644 --- a/src/Model/Post/Media.php +++ b/src/Model/Post/Media.php @@ -548,6 +548,7 @@ class Media } $height = 0; + $heights = []; $selected = ''; $previews = []; @@ -591,14 +592,11 @@ class Media in_array($filetype, ['audio', 'image'])) { $attachments['visual'][] = $medium; } elseif (($medium['type'] == self::VIDEO) || ($filetype == 'video')) { - if (strpos($medium['url'], $guid) !== false) { + if (!empty($medium['height'])) { // Peertube videos are delivered in many different resolutions. We pick a moderate one. - // By checking against the GUID we also ensure to only work this way on Peertube posts. - // This wouldn't be executed when someone for example on Mastodon was sharing multiple videos in a single post. - if (empty($height) || ($height > $medium['height']) && ($medium['height'] >= 480)) { - $height = $medium['height']; - $selected = $medium['url']; - } + // Since only Peertube provides a "height" parameter, this wouldn't be executed + // when someone for example on Mastodon was sharing multiple videos in a single post. + $heights[$medium['height']] = $medium['url']; $video[$medium['url']] = $medium; } else { $attachments['visual'][] = $medium; @@ -607,13 +605,24 @@ class Media $attachments['additional'][] = $medium; } } - if (!empty($selected)) { - $attachments['visual'][] = $video[$selected]; - unset($video[$selected]); - foreach ($video as $element) { - $attachments['additional'][] = $element; + + if (!empty($heights)) { + ksort($heights); + foreach ($heights as $height => $url) { + if (empty($selected) || $height <= 480) { + $selected = $url; + } + } + + if (!empty($selected)) { + $attachments['visual'][] = $video[$selected]; + unset($video[$selected]); + foreach ($video as $element) { + $attachments['additional'][] = $element; + } } } + return $attachments; } From f99c4ca704cdbab9ab5c2127f9bdde524ea92f21 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 14 Sep 2021 08:08:50 +0000 Subject: [PATCH 2/2] Removing unused variable --- src/Model/Post/Media.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Model/Post/Media.php b/src/Model/Post/Media.php index 087a36cb16..a29b2dcc72 100644 --- a/src/Model/Post/Media.php +++ b/src/Model/Post/Media.php @@ -547,7 +547,6 @@ class Media return $attachments; } - $height = 0; $heights = []; $selected = ''; $previews = [];