A Pen by Trần Đỗ Duy Quang on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this is a comment | |
MYVAR=My value | |
OKOK=asas | |
YES=asja |
running:
bash create-vod-hls.sh beach.mkv
will produce:
beach/
|- playlist.m3u8
|- 360p.m3u8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$q = $_GET['query'] ?? null; | |
if ($q !== null) { | |
$q = htmlspecialchars(strip_tags($q), ENT_QUOTES, "UTF-8"); | |
} | |
// data to browser | |
$data = json_encode(['q' => $q]); |