diff options
author | 2024-11-05 10:50:56 +0000 | |
---|---|---|
committer | 2024-11-05 10:50:56 +0000 | |
commit | 53aaeb18d420df4a15ac395e0138e4d369d0a2a5 (patch) | |
tree | 4140575d5ae92d39f154384cba08deb54ca930be | |
parent | [feature] add support for hinting via api/v_/instance preferred image / video... (diff) | |
download | gotosocial-53aaeb18d420df4a15ac395e0138e4d369d0a2a5.tar.xz |
previously we were using the ffmpeg runner for ffprobe :facepalm: (#3512)
-rw-r--r-- | internal/media/ffmpeg/ffprobe.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/media/ffmpeg/ffprobe.go b/internal/media/ffmpeg/ffprobe.go index 99d3d0563..ccd5072dd 100644 --- a/internal/media/ffmpeg/ffprobe.go +++ b/internal/media/ffmpeg/ffprobe.go @@ -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) }) } |