mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 18:10:56 +01:00
Hotfix: Exclude HEVC media (workaround #711)
This commit is contained in:
parent
2d3bbeae9c
commit
b7d8e0bb6c
1 changed files with 1 additions and 1 deletions
|
@ -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 || '',
|
||||
|
|
Loading…
Add table
Reference in a new issue