我有一个应用程序,用户可以上传图像,并且应该能够回显和播放视频。我的上传功能工作正常,但我现在面临的挑战是回显和播放视频。这是我上传文件的方式
function uploadFile() {
$file = $this->data['CpdVideo']['file'];
if ($file['error'] === UPLOAD_ERR_OK) {
$id = String::uuid();
if (move_uploaded_file($file['tmp_name'], WWW_ROOT . 'files/videos/' . $file['name'])) {
$this->request->data['CpdVideo']['filename'] = $file['name'];
$this->request->data['CpdVideo']['filesize'] = $file['size'];
$this->request->data['CpdVideo']['filemime'] = $file['type'];
return true;
}
}
return false;
}
这是我保存视频的方式
if ($this->uploadFile() && $this->CpdVideo->save($this->data))
这就是我在 view.ctp 中回显和播放视频的方式。请不要编辑此代码,现在这对我有用
<object width="100" height="100">
<param name="movie" value="<?php echo $this->Html->url('/files/videos/'. $cpdVideo['CpdVideo']['filename'])?>">
<embed src="<?php echo $this->Html->url('/files/videos/'. $cpdVideo['CpdVideo']['filename'])?>" width="100" height="100">
</embed>
</object>
如果有人可以帮助我,那就太棒了