You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
zencoder.com supports communication in both json (by default) and xml.
ZencoderClient.createJob(ZencoderJob job) returns Document and there's no way to instruct ZencoderClient to use JSON.
JSON support has to be added.
There are 2 options:
ZencoderClient uses json format for communication and returns json response from server as a String which is later processed by developer's code upon developer's discretion.
ZencoderClient parses json string from server and constructs JSON object using one of JSON libraries, e.g. jackson or json-simple.
The text was updated successfully, but these errors were encountered:
zencoder.com supports communication in both json (by default) and xml.
ZencoderClient.createJob(ZencoderJob job) returns Document and there's no way to instruct ZencoderClient to use JSON.
JSON support has to be added.
There are 2 options:
The text was updated successfully, but these errors were encountered: