Add media.videos to API, deprecate video

This commit is contained in:
dangered wolf 2022-08-13 01:48:17 -04:00
parent b112bd5a4c
commit a4c0d01934
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 13 additions and 0 deletions

View file

@ -23,6 +23,7 @@ const processMedia = (media: TweetMedia): APIPhoto | APIVideo | null => {
return {
url: bestVariant?.url || '',
thumbnail_url: media.media_url_https,
duration: (media.video_info?.duration_millis || 0) / 1000,
width: media.original_info.width,
height: media.original_info.height,
format: bestVariant?.content_type || '',
@ -93,6 +94,16 @@ const populateTweetProperties = async (
apiTweet.twitter_card = 'player';
apiTweet.media = apiTweet.media || {};
apiTweet.media.video = mediaObject as APIVideo;
apiTweet.media.videos = apiTweet.media.videos || [];
apiTweet.media.videos.push(mediaObject);
apiTweet.media.video = {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error
WARNING:
'video is deprecated and will be removed. Please use videos[0] instead.',
...mediaObject
};
}
}
});

2
src/types.d.ts vendored
View file

@ -101,6 +101,7 @@ interface APIVideo {
width: number;
height: number;
format: string;
duration: number;
}
interface APITweet {
@ -125,6 +126,7 @@ interface APITweet {
external?: APIExternalMedia;
photos?: APIPhoto[];
video?: APIVideo;
videos?: APIVideo[];
mosaic?: APIMosaicPhoto;
};