mirror of
https://github.com/koel/koel
synced 2024-11-15 08:57:16 +00:00
21 lines
533 B
PHP
21 lines
533 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Factories\StreamerFactory;
|
|
use App\Http\Requests\SongPlayRequest;
|
|
use App\Models\Song;
|
|
|
|
class PlayController extends Controller
|
|
{
|
|
public function __construct(private StreamerFactory $streamerFactory)
|
|
{
|
|
}
|
|
|
|
public function show(SongPlayRequest $request, Song $song, ?bool $transcode = null, ?int $bitRate = null)
|
|
{
|
|
return $this->streamerFactory
|
|
->createStreamer($song, $transcode, $bitRate, (float) $request->time)
|
|
->stream();
|
|
}
|
|
}
|