Rewrite fix to allow for any format order #711

This commit is contained in:
dangered wolf 2024-03-11 20:59:36 -04:00
parent df109e84c5
commit 0b68161e68
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -10,8 +10,10 @@ 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.url.includes('/hevc/') && (a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b
const bestVariant = media.video_info?.variants?.filter?.((format) => {
return !format.url.includes('hevc')
}).reduce?.((a, b) =>
(a.bitrate ?? 0) > (b.bitrate ?? 0) ? a : b
);
return {
url: bestVariant?.url || '',