2013-05-10 01:59:16 +04:00
|
|
|
<?php
|
|
|
|
/**
|
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-17 13:32:42 +04:00
|
|
|
require_once('getid3/getid3.php');
|
|
|
|
|
2013-05-10 01:59:16 +04:00
|
|
|
class OC_Preview_MP3 extends OC_Preview_Provider{
|
|
|
|
|
|
|
|
public function getMimeType(){
|
|
|
|
return '/audio\/mpeg/';
|
|
|
|
}
|
|
|
|
|
2013-05-17 13:32:42 +04:00
|
|
|
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
|
2013-05-28 13:49:18 +04:00
|
|
|
$getID3 = new getID3();
|
|
|
|
|
|
|
|
$tmppath = $fileview->toTmpFile($path);
|
|
|
|
|
2013-05-17 13:32:42 +04:00
|
|
|
//Todo - add stream support
|
2013-05-28 13:49:18 +04:00
|
|
|
$tags = $getID3->analyze($tmppath);
|
2013-05-17 13:32:42 +04:00
|
|
|
getid3_lib::CopyTagsToComments($tags);
|
|
|
|
$picture = @$tags['id3v2']['APIC'][0]['data'];
|
2013-05-28 13:49:18 +04:00
|
|
|
|
|
|
|
unlink($tmppath);
|
|
|
|
|
2013-05-17 13:32:42 +04:00
|
|
|
$image = new \OC_Image($picture);
|
|
|
|
if (!$image->valid()) return $this->getNoCoverThumbnail($maxX, $maxY);
|
2013-05-28 13:49:18 +04:00
|
|
|
|
2013-05-17 13:32:42 +04:00
|
|
|
return $image;
|
|
|
|
}
|
2013-05-17 21:08:16 +04:00
|
|
|
|
2013-05-17 13:32:42 +04:00
|
|
|
public function getNoCoverThumbnail($maxX, $maxY){
|
|
|
|
$image = new \OC_Image();
|
|
|
|
return $image;
|
2013-05-10 01:59:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
OC_Preview::registerProvider('OC_Preview_MP3');
|