From 183577c4d86aa8c58e6e77135b27c211392a147a Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 14 Oct 2021 11:32:38 +0200 Subject: [PATCH] wait #4751 --- src/Links/VideoLink.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Links/VideoLink.php b/src/Links/VideoLink.php index 9cf632d..0bd2052 100644 --- a/src/Links/VideoLink.php +++ b/src/Links/VideoLink.php @@ -82,7 +82,6 @@ class VideoLink extends Link } else if (!is_null($compiler) && Url::isLocal($data->to)) { // Get video dimensions from thumbnail if possible (locally uploaded files) $path = file_exists($data->to) ? $data->to : $compiler->wdir . '/' . $data->to; - dd($path); $e = explode(',', `ffprobe -v error -select_streams v:0 -show_entries stream=width,height -of csv=p=0 $path`); $attr['width'] = $e[0]; $attr['height'] = $e[1]; -- 2.39.5