Created
December 6, 2011 21:43
-
-
Save jwo/1440139 to your computer and use it in GitHub Desktop.
ZenCoder HTML5 creation for videos.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
POST https://app.zencoder.com/api/v2/jobs HTTP/1.1 | |
Accept: application/json | |
Content-Type: application/json | |
{ | |
"api_key": "API_KEY_HERE", | |
"input": "PUBLIC_FILE_URL_HERE", | |
"private": true, | |
"output": [ | |
{ | |
"video_codec": "theora", | |
"width": 450, | |
"height": 320, | |
"upscale": true, | |
"quality": 3, | |
"audio_quality": 4 | |
}, | |
{ | |
"video_codec": "h264", | |
"width": 450, | |
"height": 320, | |
"upscale": true, | |
"quality": 3, | |
"audio_quality": 4 | |
}, | |
{ | |
"video_codec": "vp8", | |
"width": 450, | |
"height": 320, | |
"upscale": true, | |
"quality": 3, | |
"audio_quality": 4 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment