server/lib/preview/mp3.php

41 lines
942 B
PHP
Raw Normal View History

2013-05-29 11:13:47 +00:00
<?php
2013-05-09 21:59:16 +00:00
/**
2013-05-17 10:00:32 +00:00
* Copyright (c) 2013 Georg Ehrke georg@ownCloud.com
2013-05-09 21:59:16 +00:00
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
2013-05-29 10:33:24 +00:00
namespace OC\Preview;
2013-05-29 11:11:43 +00:00
class MP3 extends Provider {
2013-05-09 21:59:16 +00:00
2013-05-29 11:03:33 +00:00
public function getMimeType() {
2013-05-09 21:59:16 +00:00
return '/audio\/mpeg/';
}
2013-05-17 09:32:42 +00:00
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
2013-05-30 13:29:38 +00:00
require_once('getid3/getid3.php');
2013-05-29 10:33:24 +00:00
$getID3 = new \getID3();
2013-05-28 09:49:18 +00:00
$tmppath = $fileview->toTmpFile($path);
2013-05-17 09:32:42 +00:00
//Todo - add stream support
2013-05-28 09:49:18 +00:00
$tags = $getID3->analyze($tmppath);
2013-05-29 10:33:24 +00:00
\getid3_lib::CopyTagsToComments($tags);
2013-05-17 09:32:42 +00:00
$picture = @$tags['id3v2']['APIC'][0]['data'];
2013-05-28 09:49:18 +00:00
unlink($tmppath);
2013-05-17 09:32:42 +00:00
$image = new \OC_Image($picture);
2013-06-11 08:56:16 +00:00
return $image->valid() ? $image : $this->getNoCoverThumbnail($maxX, $maxY);
2013-05-17 09:32:42 +00:00
}
2013-05-17 17:08:16 +00:00
2013-05-29 11:03:33 +00:00
public function getNoCoverThumbnail($maxX, $maxY) {
2013-05-17 09:32:42 +00:00
$image = new \OC_Image();
return $image;
2013-05-09 21:59:16 +00:00
}
}
2013-05-29 10:33:24 +00:00
\OC\Preview::registerProvider('OC\Preview\MP3');