We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parents1ef86a5 +470b7a0 commitb1736cfCopy full SHA for b1736cf
zencoder/core.py
@@ -236,6 +236,14 @@ def progress(self, output_id):
236
returnself.get(self.base_url+'/%s/progress'%str(output_id),
237
data=data)
238
239
+defdetails(self,output_id):
240
+"""
241
+ Gets the given output id's details
242
+ """
243
+data= {'api_key':self.api_key}
244
+returnself.get(self.base_url+'/%s'%str(output_id),
245
+data=data)
246
+
247
classJob(HTTPBackend):
248
"""
249
Contains all API methods relating to transcoding Jobs.
@@ -281,6 +289,10 @@ def details(self, job_id):
281
289
data= {'api_key':self.api_key}
282
290
returnself.get(self.base_url+'/%s'%str(job_id),data=data)
283
291
292
+defprogress(self,job_id):
293
294
+returnself.get(self.base_url+'/%s/progress'%str(job_id),data=data)
295
284
296
defresubmit(self,job_id):
285
297
286
298
Resubmits a job