mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 11:00:54 +01:00
Add media.videos to API, deprecate video
This commit is contained in:
parent
b112bd5a4c
commit
a4c0d01934
2 changed files with 13 additions and 0 deletions
11
src/api.ts
11
src/api.ts
|
@ -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
2
src/types.d.ts
vendored
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue