Home > python > Linux: Python text-to-speech

Linux: Python text-to-speech

This is the Linux version of this post.

#!/usr/bin/env python

import os
from time import sleep

text = "text to speak"

cmd = 'espeak "{0}" 2>/dev/null'.format(text)
os.system(cmd)
sleep(1)
os.system(cmd)

Links
Mac OS X “say” command in Ubuntu?

Categories: python Tags: , ,
  1. No comments yet.
  1. No trackbacks yet.

Leave a comment

Design a site like this with WordPress.com
Get started