Skript für Ansagen in mp3-Dateien

Gab es eigentlich in letzter Zeit Änderungen an Googles Text->Speech-API? Habe wie gehabt meinen API-Key in das Exceltool eingetragen und es kommt jeweils der Fehler „Error 400: Bad Request“. Die API ist im Google Dashboard aktiviert und der Key ist ebenfalls aktiv. Ein neu erstellter Key brachte keine Änderung.
Wenn ich das Python-Skript manuell benutze, kommt der gleiche Fehler, jeweils:

HTTP Error 400: Bad Request
Traceback (most recent call last):
  File "D:\Tonuino\tools\add_lead_in_messages.py", line 135, in <module>
    addLeadInMessage(args.input, args.output)
  File "D:\Tonuino\tools\add_lead_in_messages.py", line 55, in addLeadInMessage
    addLeadInMessage(os.path.join(inputPath, child), os.path.join(outputPath, child))
  File "D:\Tonuino\tools\add_lead_in_messages.py", line 84, in addLeadInMessage
    text_to_speech.textToSpeechUsingArgs(text=text, targetFile=tempLeadInFile, args=args)
  File "D:\Tonuino\tools\text_to_speech.py", line 67, in textToSpeechUsingArgs
    textToSpeech(text, targetFile, lang=args.lang, useAmazon=args.use_amazon, useGoogleKey=args.use_google_key)
  File "D:\Tonuino\tools\text_to_speech.py", line 93, in textToSpeech
    mp3Data = base64.b64decode(responseJson['audioContent'])
TypeError: 'NoneType' object is not subscriptable

Irgendwelche Ideen oder sitzt das Problem mal wieder vor dem Rechner? Fehler 403 war ja mal die nicht aktivierte API, aber Fehler 400?

image