mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-03 17:40:56 +01:00
Fix Telegram HEVC
This commit is contained in:
parent
9781cc3b5e
commit
1aca7b9b24
1 changed files with 4 additions and 4 deletions
|
@ -14,16 +14,16 @@ export const processMedia = (c: Context, media: TweetMedia): APIPhoto | APIVideo
|
|||
/* Find the variant with the highest bitrate */
|
||||
const bestVariant = media.video_info?.variants?.filter?.((format) => {
|
||||
if (c.req.header('user-agent')?.includes('Telegram') && format.bitrate) {
|
||||
// Telegram doesn't support videos over 20 MB, so we need to filter them out
|
||||
/* Telegram doesn't support videos over 20 MB, so we need to filter them out */
|
||||
const bitrate = format.bitrate || 0;
|
||||
const length = (media.video_info?.duration_millis || 0) / 1000;
|
||||
// Calculate file size in bytes
|
||||
/* Calculate file size in bytes */
|
||||
const fileSizeBytes: number = (bitrate * length) / 8;
|
||||
|
||||
// Convert file size to megabytes (MB)
|
||||
/* Convert file size to megabytes (MB) */
|
||||
const fileSizeMB: number = fileSizeBytes / (1024 * 1024);
|
||||
|
||||
console.log(`Estimated file size: ${fileSizeMB.toFixed(2)} MB for bitrate ${bitrate/1000} kbps`);
|
||||
return fileSizeMB < 30; /* Currently this calculation is off, so we'll just do it if it's way over */
|
||||
}
|
||||
return !format.url.includes('hevc');
|
||||
}).reduce?.((a, b) =>
|
||||
|
|
Loading…
Add table
Reference in a new issue