We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ef86a5 commit 316734bCopy full SHA for 316734b
zencoder/core.py
@@ -236,6 +236,14 @@ def progress(self, output_id):
236
return self.get(self.base_url + '/%s/progress' % str(output_id),
237
data=data)
238
239
+ def details(self, output_id):
240
+ """
241
+ Gets the given output id's details
242
243
+ data = {'api_key': self.api_key}
244
+ return self.get(self.base_url + '/%s' % str(output_id),
245
+ data=data)
246
+
247
class Job(HTTPBackend):
248
"""
249
Contains all API methods relating to transcoding Jobs.
0 commit comments