项目作者: WarrenWilkinson

项目描述 :
Emacs Lisp interface to Google Cloud API
高级语言: Emacs Lisp
项目地址: git://github.com/WarrenWilkinson/google-api.git
创建时间: 2020-03-10T21:25:14Z
项目社区:https://github.com/WarrenWilkinson/google-api

开源协议:

下载


Google Cloud API For Emacs

This is an emacs library of Google Cloud API routines. They are generated
using Googles’ discovery documents.

https://developers.google.com/discovery/v1/building-a-client-library
https://developers.google.com/discovery/v1/reference/apis
https://developers.google.com/api-client-library

It basically is just a library of functions for accessing google-cloud api endpoints.
For example, I’m learning French and I use Google’s text to speech interface to
translate French text into audio like this:

  1. (defvar my-api-key "<my-api-key>")
  2. (defvar my-response nil)
  3. (defvar my-bytes nil)
  4. (defun my-save-speech (text outputfile)
  5. (setq my-response (google-texttospeech-v1:text/synthesize
  6. nil
  7. `((key . ,my-api-key))
  8. `((input . ((text . ,text)))
  9. (voice . ((languageCode . "fr-CA")
  10. (name . "fr-CA-Wavenet-B")))
  11. (audioConfig . ((audioEncoding . "OGG_OPUS"))))))
  12. (setq my-bytes (base64-decode-string (cdr (assoc 'audioContent my-response))))
  13. (with-current-buffer (find-file-literally outputfile)
  14. (erase-buffer)
  15. (insert my-bytes)
  16. (basic-save-buffer nil)
  17. (kill-buffer)))
  18. (my-save-speech "bonjour parlez-vous française garçon?" "/tmp/speech.opus")