From 8bb7daefaedf32c49c5164cce09e27672c586aeb Mon Sep 17 00:00:00 2001 From: Zankaria Date: Thu, 9 Oct 2025 22:43:47 +0200 Subject: [PATCH] ffmpeg.php: remove unused trackmap parameter --- inc/lib/webm/ffmpeg.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/lib/webm/ffmpeg.php b/inc/lib/webm/ffmpeg.php index 810c68c1..e45c09bb 100644 --- a/inc/lib/webm/ffmpeg.php +++ b/inc/lib/webm/ffmpeg.php @@ -50,7 +50,7 @@ function locate_webm_tracks($ffprobe_out) { } } - return [ 'videoat' => $video_at, 'audioat' => $audio_at, 'others' => $others ]; + return [ 'videoat' => $video_at, 'audioat' => $audio_at ]; } function is_valid_webm($ffprobe_out) {