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 55269c9 commit 808b8fdCopy full SHA for 808b8fd
videodb/client.py
@@ -226,6 +226,15 @@ def transcode(
226
},
227
)
228
229
+ def get_transcode_details(self, job_id: str) -> dict:
230
+ """Get the details of a transcode job.
231
+
232
+ :param str job_id: ID of the transcode job
233
+ :return: Details of the transcode job
234
+ :rtype: dict
235
+ """
236
+ return self.get(path=f"{ApiPath.transcode}/{job_id}")
237
238
def upload(
239
self,
240
file_path: str = None,
0 commit comments