Home / Docs / FFmpeg
On this page

FFmpeg

Utilidades integradas para trabajar con videos.

Thumbnail

const thumb = await ctx.thumbFromVideo(videoBuffer, {
    seek: 1.5,
    width: 320
});

await ctx.sendFile(thumb);

Duracion

const duration = await bot.ffutil.duration(videoBuffer);
console.log(`Duracion: ${duration}s`);