basic video playback support using VideoJS
This commit is contained in:
parent
04681618da
commit
fec4581f34
29 changed files with 5596 additions and 13 deletions
|
|
@ -37,7 +37,12 @@ function attach_init(&$a) {
|
|||
// Use quotes around the filename to prevent a "multiple Content-Disposition"
|
||||
// error in Chrome for filenames with commas in them
|
||||
header('Content-type: ' . $r[0]['filetype']);
|
||||
header('Content-disposition: attachment; filename="' . $r[0]['filename'] . '"');
|
||||
header('Content-length: ' . $r[0]['filesize']);
|
||||
if(isset($_GET['attachment']) && $_GET['attachment'] === '0')
|
||||
header('Content-disposition: filename="' . $r[0]['filename'] . '"');
|
||||
else
|
||||
header('Content-disposition: attachment; filename="' . $r[0]['filename'] . '"');
|
||||
|
||||
echo $r[0]['data'];
|
||||
killme();
|
||||
// NOTREACHED
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue