Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 17th, 2012  |  syntax: None  |  size: 0.92 KB  |  hits: 21  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. // Create a task to create a video transcription
  2. //
  3. // POST https://v1.houdiniapi.com/tasks.json HTTP/1.1
  4. // Content-Type: application/json; charset=utf-8
  5.  
  6. {
  7.   "api_key": "[YOUR_API_KEY]",
  8.   "environment": "sandbox",
  9.   "postback_url": "http://limelight.com/houdini_postback/12345",
  10.   "blueprint": "houdini.limelight_dfxp_transcription.1",
  11.   "input": {
  12.     "video_url": "http://cdn.limelight.com/video123.mp4"
  13.   }
  14. }
  15.  
  16. // Example postback after transcription is complete
  17. //
  18. // POST 'http://limelight.com/houdini_postback/12345' HTTP/1.1
  19. // Content-Type: application/json; charset=utf-8
  20.  
  21. {
  22.   "id":"4e1bca7f286dde00010202b3",
  23.   "environment": "sandbox",
  24.   "postback_url": "http://limelight.com/houdini_postback/12345",
  25.   "blueprint": "houdini.limelight_dfxp_transcription.1",
  26.   "input": {
  27.     "video_url": "http://cdn.limelight.com/video123.mp4"
  28.   }
  29.   "status":"finalized",
  30.   "output":{
  31.      "dfxp":"<?xml version='1.0' encoding='UTF-8'?>..."
  32.   }
  33. }