有谁知道我为什么一直收到这个错误:
JSONResponseError: 400 Bad Request
{u'Message': u'Start of list found where not expected'}
当我使用api中指定的输出字典时工作正常,但是当我切换到dicts的输出列表时,我一直得到上述错误。
这是我写的代码:
transInput = {
'Key': path,
'FrameRate': 'auto',
'Resolution': 'auto',
'AspectRatio': 'auto',
'Interlaced': 'auto',
'Container': 'auto'
}
pprint (transInput)
#Create a job for each desired preset
for pId, descrip in presets.iteritems():
transOutput = {
'PresetId': pId,
'Rotate': 0,
'ThumbnailPattern': 00001,
'Key': path +"-" + descrip
}
outputs.append(transOutput)
try:
transcode.create_job(pipelineId, transInput, outputs)
except Exception, e:
print e
答案 0 :(得分:2)
如果要使用输出列表,则必须将其指定为outputs
参数:
transcode.create_job(pipelineId, transInput, outputs=output)