1

我正在尝试从 Google Cloud Storage url 打开视频并在云功能中处理它 - 该文件是公开可用的。但v.read()回报None

示例视频网址:https ://storage.googleapis.com/dev-brdu1976/268.mov

v = cv2.VideoCapture(request.json['Source_Storage_Path'])
    print(v)
    frameNum = -1
    while (True):
        ret_value,frame = v.read()
        if ret_value == False or frame is None:
            print('Frame is None')
            break
        frameNum += 1
        #do stuff
4

1 回答 1

2

我想出了如何让它工作,但我没有深入研究细节。通过 https 请求视频无法打开 - 当我将 url 协议更改为 http 时,它确实有效。

于 2018-11-26T18:12:52.870 回答