previously we were using the ffmpeg runner for ffprobe 🤦 (#3512)

This commit is contained in:
kim 2024-11-05 10:50:56 +00:00 committed by GitHub
parent f3b2eca8b8
commit 53aaeb18d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,7 +40,7 @@ func InitFfprobe(ctx context.Context, max int) error {
// Ffprobe runs the given arguments with an instance of ffprobe.
func Ffprobe(ctx context.Context, args Args) (uint32, error) {
return ffmpegRunner.Run(ctx, func() (uint32, error) {
return ffprobeRunner.Run(ctx, func() (uint32, error) {
return wasm.Run(ctx, runtime, ffprobe, args)
})
}