6 lines
226 B
PHP
6 lines
226 B
PHP
<!doctype html>
|
|
<a id="mpv" href="mpv:<?=filter_input(INPUT_GET, "url", FILTER_SANITIZE_URL);?>">Open in MPV</a>
|
|
<script>
|
|
document.getElementById('mpv').click();
|
|
setTimeout(function() { window.close() }, 1);
|
|
</script>
|