We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ed6493 commit 5150599Copy full SHA for 5150599
assemblyai/transcriber.py
@@ -384,6 +384,14 @@ def text(self) -> Optional[str]:
384
385
return self._impl.transcript.text
386
387
+ @property
388
+ def translated_texts(self) -> Optional[Dict[str, str]]:
389
+ "The translated texts transcription of your media file"
390
+ if not self._impl.transcript:
391
+ raise ValueError("The internal Transcript object is None.")
392
+
393
+ return self._impl.transcript.translated_texts
394
395
@property
396
def summary(self) -> Optional[str]:
397
"The summarization of the transcript"
0 commit comments