ffmpeg support?
Any ideas of how can I use ffmpeg on an action, or is that use case not supported?
(I see the functions have a 512mb limit, 10 minute execution but it should be enough for my use case)
This is a minimum reproducible example:
"use node";
import { action } from "./_generated/server";
import { v } from "convex/values";
import { path as ffmpegPath } from '@ffmpeg-installer/ffmpeg'
export const transcribe = action({
args: { id: v.string(), from: v.number() },
handler: async (ctx, args) => {
console.log(ffmpegPath);
},
});
The errors I'm seeing:

