Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions lib/private/Preview/MP3.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,10 @@
*/
namespace OC\Preview;

use ID3Parser\ID3Parser;

use OCP\Files\File;
use OCP\IImage;
use Psr\Log\LoggerInterface;
use wapmorgan\Mp3Info\Mp3Info;

class MP3 extends ProviderV2 {
/**
Expand All @@ -46,11 +45,12 @@ public function getMimeType(): string {
* {@inheritDoc}
*/
public function getThumbnail(File $file, int $maxX, int $maxY): ?IImage {
$getID3 = new ID3Parser();

$tmpPath = $this->getLocalFile($file);

try {
$tags = $getID3->analyze($tmpPath);
$audio = new Mp3Info($tmpPath, true);
/** @var string|null|false $picture */
$picture = $audio->getCover();
} catch (\Throwable $e) {
\OC::$server->get(LoggerInterface::class)->info($e->getMessage(), [
'exception' => $e,
Expand All @@ -61,12 +61,7 @@ public function getThumbnail(File $file, int $maxX, int $maxY): ?IImage {
$this->cleanTmpFiles();
}

$picture = isset($tags['id3v2']['APIC'][0]['data']) ? $tags['id3v2']['APIC'][0]['data'] : null;
if (is_null($picture) && isset($tags['id3v2']['PIC'][0]['data'])) {
$picture = $tags['id3v2']['PIC'][0]['data'];
}

if (!is_null($picture)) {
if (is_string($picture)) {
$image = new \OCP\Image();
$image->loadFromData($picture);

Expand Down