Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?php | |
| 2 $position = $_GET["position"]; | |
| 3 header('HTTP/1.0 206 Partial Content'); | |
| 4 header('Content-Type: audio/ogg'); | |
| 5 header('Content-Range: bytes ' . $position . '-' . $position . '/12983'); | |
|
falken
2015/07/07 03:23:10
does it make sense to comment what 12983 is from
horo
2015/07/07 10:08:11
Done.
| |
| 6 header('Access-Control-Allow-Origin: *'); | |
| 7 echo substr('Ogg', $position, 1); | |
| 8 ?> | |
| OLD | NEW |