Hotfix: Exclude HEVC media (workaround #711)

This commit is contained in:
dangered wolf 2024-03-11 20:22:18 -04:00
parent 2d3bbeae9c
commit b7d8e0bb6c
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -11,7 +11,7 @@ export const processMedia = (media: TweetMedia): APIPhoto | APIVideo | null => {
} else if (media.type === 'video' || media.type === 'animated_gif') {
/* Find the variant with the highest bitrate */
const bestVariant = media.video_info?.variants?.reduce?.((a, b) =>
(a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b
!a.url.includes('/hevc/') && (a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b
);
return {
url: bestVariant?.url || '',