How do I specify the dimensions of the video (height, width) when sending telegrams by bot? – Telegram API
I use the node-telegram-bot-api library. How do I specify the size of the video when sending it? // where to specify height and width ? bot.sendVideo( chatId, video, { caption: 'my video' }, { filename: 'my_file' }, ) The telegram…