koel/app/Services/TranscodingService.php
2022-10-08 12:49:50 +02:00

13 lines
265 B
PHP

<?php
namespace App\Services;
use App\Models\Song;
class TranscodingService
{
public function songShouldBeTranscoded(Song $song): bool
{
return ends_with(mime_content_type($song->path), 'flac') && config('koel.streaming.transcode_flac');
}
}