2013-05-29 15:13:47 +04:00
|
|
|
<?php
|
2013-05-10 01:59:16 +04:00
|
|
|
/**
|
2013-05-17 14:00:32 +04:00
|
|
|
* Copyright (c) 2013 Georg Ehrke georg@ownCloud.com
|
2013-05-10 01:59:16 +04:00
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
2013-05-29 14:33:24 +04:00
|
|
|
namespace OC\Preview;
|
|
|
|
|
2013-05-29 15:11:43 +04:00
|
|
|
class MP3 extends Provider {
|
2013-05-10 01:59:16 +04:00
|
|
|
|
2013-05-29 15:03:33 +04:00
|
|
|
public function getMimeType() {
|
2013-05-10 01:59:16 +04:00
|
|
|
return '/audio\/mpeg/';
|
|
|
|
}
|
|
|
|
|
2013-05-17 13:32:42 +04:00
|
|
|
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
|
2013-05-29 14:33:24 +04:00
|
|
|
$getID3 = new \getID3();
|
2013-05-28 13:49:18 +04:00
|
|
|
|
2013-07-30 14:29:12 +04:00
|
|
|
$tmpPath = $fileview->toTmpFile($path);
|
|
|
|
|
|
|
|
$tags = $getID3->analyze($tmpPath);
|
|
|
|
\getid3_lib::CopyTagsToComments($tags);
|
|
|
|
if(isset($tags['id3v2']['APIC'][0]['data'])) {
|
|
|
|
$picture = @$tags['id3v2']['APIC'][0]['data'];
|
|
|
|
unlink($tmpPath);
|
2013-11-13 03:36:42 +04:00
|
|
|
$image = new \OC_Image();
|
|
|
|
$image->loadFromData($picture);
|
2013-07-30 14:29:12 +04:00
|
|
|
return $image->valid() ? $image : $this->getNoCoverThumbnail();
|
|
|
|
}
|
2013-05-28 13:49:18 +04:00
|
|
|
|
2013-07-30 14:29:12 +04:00
|
|
|
return $this->getNoCoverThumbnail();
|
2013-05-17 13:32:42 +04:00
|
|
|
}
|
2013-05-17 21:08:16 +04:00
|
|
|
|
2013-07-30 14:29:12 +04:00
|
|
|
private function getNoCoverThumbnail() {
|
2013-06-19 12:21:55 +04:00
|
|
|
$icon = \OC::$SERVERROOT . '/core/img/filetypes/audio.png';
|
|
|
|
|
|
|
|
if(!file_exists($icon)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-11-13 03:36:42 +04:00
|
|
|
$image = new \OC_Image();
|
|
|
|
$image->loadFromFile($icon);
|
2013-06-19 12:21:55 +04:00
|
|
|
return $image->valid() ? $image : false;
|
2013-05-10 01:59:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-29 19:07:10 +04:00
|
|
|
\OC\Preview::registerProvider('OC\Preview\MP3');
|