mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 18:10:56 +01:00
Rewrite fix to allow for any format order #711
This commit is contained in:
parent
df109e84c5
commit
0b68161e68
1 changed files with 4 additions and 2 deletions
|
@ -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 || '',
|
||||
|
|
Loading…
Add table
Reference in a new issue