Name
Manually process the existing and the new recordings for time gaps.
Availability
Adobe Connect 9.4, Updated in Adobe Connect 9.5
Description
Using this API, you can manually process the recordings for time gaps. The API post-processes the new and the existing recordings.
[Update in Adobe Connect 9.5] The timeThreshold parameter is removed from the API.
Request URL
http://example.com/api/xml?action=process-recording&sco-id=<ScoId>&timeThreshold=1001
Parameters
|
Type |
Required |
Description |
sco-id |
BIGINT |
Yes |
SCO ID of a recording. |
timeThreshold |
Integer |
No |
Threshold for backward timestamp in milliseconds. The default value is 2000 msec. |
Filters
You can filter or sort the response on any element or attribute it contains.
Name |
Type |
Required |
Description |
filter-definition |
Value |
No |
A filter to reduce the volume of the response. |
Response structure
<?xml version="1.0" encoding="utf-8" ?> <results> <status code="ok" /> <ProcessedFiles> <ProcessedFile> <exitCode>Exit code - Description</exitCode> <fileName>flv File Name</fileName> </ProcessedFile> </ProcessedFiles> </results>
Response values
There are multiple ProcessedFile nodes, one for every FLV file.
Sample request
http://example.com/api/xml?action=process-recording&sco-id=13201&timeThreshold=1001
Sample response
<?xml version="1.0" encoding="utf-8" ?> <results> <status code="ok" /> <ProcessedFiles> <ProcessedFile> <exitCode>2 - No Gaps found</exitCode> <fileName>a.flv</fileName> </ProcessedFile> </ProcessedFiles> </results>