Advertisement
rowntreerob

google speech api V2 - curl sample

Feb 28th, 2014
1,255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.87 KB | None | 0 0
  1. Note the result , technically is illegal json payload because there are 2 message payloads just concatenated ( no ArrayObject wrapper to enclose them according to the RULE for a json response ).
  2. Therefor , apache handlers for  CHUNKED encoded response entities will return ILLEGAL JSON with 2 roots. The first root is just the empty "result" message.  
  3.  
  4. POST should include  attr values of the audio clip you are sending...
  5. POST -H "Content-Type: audio/x-flac; rate=16000" \ -T seg_1.flac
  6.  
  7. Actual post on curl below:
  8.  
  9. > POST /speech-api/v2/recognize?output=json&lang=en-us&key=....NXig HTTP/1.1
  10.  
  11. > User-Agent: curl/7.28.1-DEV
  12. > Host: www.google.com
  13. > Accept: */*
  14. > Content-Type: audio/x-flac; rate=16000;
  15. > Content-Length: 192561
  16. > Expect: 100-continue
  17. >
  18. * Done waiting for 100-continue
  19. * We are completely uploaded and fine
  20. < HTTP/1.1 200 OK
  21. < Content-Type: application/json; charset=utf-8
  22. < Content-Disposition: attachment
  23. < Cache-Control: no-transform
  24. < X-Content-Type-Options: nosniff
  25. < Pragma: no-cache
  26. < Date: Tue, 25 Feb 2014 20:04:30 GMT
  27. < Server: S3 v1.0
  28. < X-XSS-Protection: 1; mode=block
  29. < X-Frame-Options: SAMEORIGIN
  30. < Alternate-Protocol: 443:quic
  31. < Transfer-Encoding: chunked
  32. <
  33. {"result":[]}
  34. {"result":[{"alternative":[{"transcript":"now it was the favorite pastime the woman of course never play with strictly a man's game"},{"transcript":"now it was the favorite pastime the woman of course never play with strictly a mans game"},{"transcript":"now it was the favorite pastime the woman of course never played with strictly a man's game"},{"transcript":"now it was the favorite pastime the woman of course never played with strictly a mans game"},{"transcript":"now it was the favorite pastime the woman of course never played it was strictly a man's game"}],"final":true}],"result_index":0}
  35. * Connection #0 to host www.google.com left intact
  36. * Closing connection #0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement