我的黑客马拉松团队在过去12个多小时内一直在使用Google Glass和Mirror API播放视频,特别是使用PHP库。
我们已尝试将视频附加到时间轴项目,我们尝试使用捆绑选项,但两者都不会流式传输视频。
我没有要显示的错误消息,根据Google文档,我们可以看到的代码是正确的。
更多细节:
如果有人能提供一些指导,我们真的很感激!谢谢!
修改
这是我们正在使用的代码结构,直接来自PHP库:
function insertAttachment($service, $itemId, $contentType, $attachment) {
try {
$params = array(
'data' => $attachment,
'mimeType' => $contentType,
'uploadType' => 'media');
return $service->timeline_attachments->insert($itemId, $params);
} catch (Exception $e) {
print 'An error ocurred: ' . $e->getMessage();
return null;
}
}
这是尝试播放视频的最新版本:
$bundle_view = $app->view();
$bundle_view->appendData(array('total' => count($response['search']), 'video'=>$response['search'][0]));
$bundle_html = $app->view()->fetch('bundle_home.twig');
$new_timeline_item = new Google_TimelineItem();
$new_timeline_item->setHtml($bundle_html);
//$new_timeline_item->setBundleId($response['search'][0]['id']);
$new_timeline_item->isBundleCover = 'true';
$notification = new Google_NotificationConfig();
$notification->setLevel("DEFAULT");
$new_timeline_item->setNotification($notification);
$post_result = insert_timeline_item($mirror_service, $new_timeline_item, null, null);
error_log(print_r($post_result->getId(), true));
$new_timeline_item->setHtmlPages("<article><section> <video src='http://www.w3schools.com/html/movie.mp4' controls> </section></article>");
/**
foreach ($response['search'] as $video) {
$item = $video['videos'][0];
$v_item = new Google_MediaFileUpload('video/vnd.google-glass.stream-url', $item, true);
$params = array(
'data' => $v_item,
'mimeType' => 'video/*',
'uploadType' => 'resumable');
$mirror_service->timeline_attachments->insert($post_result->getId(), $params);
}
**/
insert_timeline_item($mirror_service, $new_timeline_item, null, null);
可能更容易阅读要点:https://gist.github.com/kgardnr/1f2ce243f91cedaf9c92
答案 0 :(得分:1)
似乎是在使用视频元素的setHTMLPages中,这是一个被阻止的HTML元素。这是问题的根本原因吗?
答案 1 :(得分:0)
目前无法通过HTML附加流媒体视频,我认为您无法在其上呈现任何内容。从我的经验来看,它也不是很好(或根本没有)包含在库中(至少不是.NET的......我认为PHP是相同的)。
我必须做的是自己构建webrequest,如流媒体视频部分所示:https://developers.google.com/glass/timeline