发布杜比API与GCP集成



我目前正在尝试使用杜比的增强API,在尝试编写输出文件时遇到了一个问题。以下是我用来获取输入和输出blob的blob的代码:

file = await storage_client.get_capture_file(capture.filename)
input_file = file.generate_signed_url(
version="v4",
expiration=datetime.timedelta(minutes=15),
method="GET",
)
blob = storage_client.capture_bucket.blob(
"{}_{}".format(preset, capture.filename)
if preset
else "{}_{}_{}_{}_{}".format(
speech_isolation,
range_control,
noise_reduction,
peak_limit,
capture.filename,
)
)
output_file = blob.generate_signed_url(
version="v4",
expiration=datetime.timedelta(minutes=15),
method="PUT",
content_type="application/octet-stream",
)

输入文件运行良好,因为如果我写入杜比的临时存储器,就没有问题。这是我的有效载荷和API调用

payload = {
"content": {"type": "mobile_phone"},
...

"input": input_file,
"output": output_file,
}
headers = {
"Accept": "application/json",
"Content-Type": "application/json",
"x-api-key": os.environ.get("DOLBY_API_KEY"),
}
enhance_response = requests.request(
"POST", "https://api.dolby.com/media/enhance", json=payload, headers=headers
)

我收到的具体错误如下:

{'path': '/media/enhance', 'status': 'InternalError', 'progress': 43, 'api_version': 'v1.1.2', 'error': {'type': '/problems/internal-error', 'title': 'An internal service error has occurred'}}

我认为这个问题与将新文件上传到GCP有关。不过,我真的不知道具体的问题是什么。如有任何指导,我们将不胜感激。

删除

content_type="application/octet-stream",

它会起作用的。经过几天的故障排除,我从杜比技术支持部门收到了这个答案,目前它正在为我工作

相关内容

  • 没有找到相关文章

最新更新