dongya2029 2015-05-11 19:46
浏览 26

PHP中的水印mp4 / m4v

Is there a way to watermark mp4/m4v files in PHP? The files are already saved on the server, but when displaying, I want a watermark to be put over through PHP (header-output).

Here is my current PHP code:

$fp = fopen($path, 'rb');

// Change the header to whatever your file's mime type is
header("Content-Type: " . $ctype);
header("Content-Length: " . filesize($path));

fpassthru($fp);
exit;
  • 写回答

0条回答 默认 最新

    报告相同问题?