Copy and Setup Upload form.
<form action="http://api.ankoder.com/files/upload"
method="post" enctype="multipart/form-data" >
<input name="access_key" type="hidden" value="<your-access-key>" />
<input name="success_redirect" type="hidden" value="http://www.myapp.com/videos/upload/success" />
<input name="failed_redirect" type="hidden" value="http://www.myapp.com/video/upload/failed" />
<input name="upload_postback" type="hidden" value="http://www.myapp.com/notification_url" />
<p>
<label for="file">File:</label>
<input id="file" name="file" type="file" /> (Max 2GB)
</p>
<input name="commit" type="submit" value="Submit" />
</form>
Please subsitute <your-access-key> with the one obtained from step 2.