mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-21 16:55:38 +03:00
previously we were using the ffmpeg runner for ffprobe 🤦 (#3512)
This commit is contained in:
parent
f3b2eca8b8
commit
53aaeb18d4
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ func InitFfprobe(ctx context.Context, max int) error {
|
||||||
|
|
||||||
// Ffprobe runs the given arguments with an instance of ffprobe.
|
// Ffprobe runs the given arguments with an instance of ffprobe.
|
||||||
func Ffprobe(ctx context.Context, args Args) (uint32, error) {
|
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)
|
return wasm.Run(ctx, runtime, ffprobe, args)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue