gpt4 book ai didi

python - 如何正确使用Mirror API中的PLAY_VIDEO

转载 作者:太空宇宙 更新时间:2023-11-03 18:48:51 25 4
gpt4 key购买 nike

我一直在尝试使用 Google Glass Mirror API,并且希望能够流式传输视频。

这是我尝试过的Python代码片段:

def _insert_item_video_stream(self):
"""Insert a timeline item with streaming video."""
logging.info('Inserting timeline item with streaming video')
body = {
'notification': {'level': 'DEFAULT'},
'menuItems' : [{'action' : 'PLAY_VIDEO'},
{'payload' : 'https://eye-of-the-hawk.appspot.com/static/videos/waterfall.mp4'}],
}
self.mirror_service.timeline().insert(body=body).execute()
return 'A timeline item with streaming video has been inserted.'

但是,视频一片空白。任何想法都会非常有帮助!

最佳答案

删除两个括号后就能解决这个问题!哦,Python。 :/

这是固定线路:

   'menuItems' : [{'action' : 'PLAY_VIDEO', 'payload' : 'https://eye-of-the-hawk.appspot.com/static/videos/waterfall.mp4'}],

关于python - 如何正确使用Mirror API中的PLAY_VIDEO,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18833359/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com