1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
Date: Mon, 3 Nov 2014 21:34:54 -0400
Subject: Use getid3 class from the php-getid3 package
---
plugins-dist/medias/metadata/video.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins-dist/medias/metadata/video.php b/plugins-dist/medias/metadata/video.php
index 0f4683b..afe6760 100644
--- a/plugins-dist/medias/metadata/video.php
+++ b/plugins-dist/medias/metadata/video.php
@@ -27,7 +27,7 @@ if (!defined('_ECRIRE_INC_VERSION')) {
function metadata_video($file) {
$meta = [];
- include_spip('lib/getid3/getid3');
+ include_once('getid3/getid3.php');
$getID3 = new getID3();
$getID3->setOption(['tempdir' => _DIR_TMP]);
|