mirror of
https://github.com/Karaka-Management/oms-Media.git
synced 2026-01-22 14:08:39 +00:00
13 lines
413 B
PHP
Executable File
13 lines
413 B
PHP
Executable File
<?php declare(strict_types=1);
|
|
|
|
use phpOMS\Uri\UriFactory;
|
|
|
|
?>
|
|
<section id="mediaFile" class="portlet">
|
|
<div class="portlet-body">
|
|
<audio width="100%" controls>
|
|
<source src="<?= UriFactory::build('{/api}media/export?id=' . $this->media->getId()); ?>" type="audio/<?= $this->media->extension; ?>">
|
|
Your browser does not support HTML audio.
|
|
</audio>
|
|
</div>
|
|
</section>
|