Pass through media variants in API

This commit is contained in:
dangered wolf 2022-09-03 01:12:36 -04:00
parent f610931843
commit a560204b43
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 2 additions and 0 deletions

View file

@ -14,6 +14,7 @@ export const processMedia = (media: TweetMedia): APIPhoto | APIVideo | null => {
); );
return { return {
url: bestVariant?.url || '', url: bestVariant?.url || '',
variants: media.video_info?.variants || [],
thumbnail_url: media.media_url_https, thumbnail_url: media.media_url_https,
duration: (media.video_info?.duration_millis || 0) / 1000, duration: (media.video_info?.duration_millis || 0) / 1000,
width: media.original_info.width, width: media.original_info.width,

View file

@ -97,6 +97,7 @@ interface APIMosaicPhoto {
interface APIVideo { interface APIVideo {
type: 'video' | 'gif'; type: 'video' | 'gif';
url: string; url: string;
variants: TweetMediaFormat[];
thumbnail_url: string; thumbnail_url: string;
width: number; width: number;
height: number; height: number;