PHP中的水印mp4 / m4v

时间:2015-05-11 19:46:28

标签: php mp4 watermark m4v

有没有办法在PHP中为mp4 / m4v文件添加水印?这些文件已保存在服务器上,但在显示时,我希望通过PHP(标题输出)来放置水印。

这是我目前的PHP代码:

$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 个答案:

没有答案