我已使用ZF2在Google App Engine中上传了视频文件。但是当我们获取它时会产生错误:
"找不到支持格式和MIME类型的视频"。
以下是我们用来上传的代码:
0 01111111111 0001001001001001001001001001001001001001001001001010
以下是获取它的代码。
$File = $this->params()->fromFiles('video');
$gs_name = $File['tmp_name'];
move_uploaded_file($gs_name, 'gs://testing001'.'/test/video/movie.ogg');
答案 0 :(得分:2)
顾名思义,CloudStorageTools :: getImageServingUrl仅为图像创建URL。您可以使用CloudStorageTools :: getPublicUrl直接从GCS提供文件:https://cloud.google.com/appengine/docs/php/googlestorage/public_access