diff --git a/src/api.ts b/src/api.ts index 65d0b0c..93ab764 100644 --- a/src/api.ts +++ b/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 + }; } } }); diff --git a/src/types.d.ts b/src/types.d.ts index d0a3d32..00b39e6 100644 --- a/src/types.d.ts +++ b/src/types.d.ts @@ -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; };