Codebase list sugar-read-activity / 07c85af speech_gst.py
07c85af

Tree @07c85af (Download .tar.gz)

speech_gst.py @07c85afraw · history · blame

# Copyright (C) 2009 Aleksey S. Lim
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

import logging
import pygst
pygst.require("0.10")
from gi.repository import Gst

import speech

_logger = logging.getLogger('read-etexts-activity')


def _message_cb(bus, message, pipe):
    logging.error('gstreamer message %s', message)
    if message is None:
        return
    if message.type == Gst.Message.EOS:
        pipe.set_state(Gst.State.NULL)
        if speech.end_text_cb != None:
            speech.end_text_cb()
    if message.type == Gst.Message.ERROR:
        pipe.set_state(Gst.State.NULL)
        if pipe is play_speaker[1]:
            if speech.reset_cb is not None:
                speech.reset_cb()
            if speech.reset_buttons_cb is not None:
                speech.reset_buttons_cb()
    elif message.type == Gst.Message.ELEMENT and \
            message.structure.get_name() == 'espeak-mark':
        mark = message.structure['mark']
        speech.highlight_cb(int(mark))


def _create_pipe():
    pipe = Gst.Pipeline()
    pipe.set_name('pipeline')

    source = Gst.ElementFactory.make('espeak', 'source')
    pipe.add(source)

    sink = Gst.ElementFactory.make('autoaudiosink', 'sink')
    pipe.add(sink)
    source.link(sink)

    bus = pipe.get_bus()
    bus.add_signal_watch()
    logging.error('before adding message callback')
    bus.connect('message', _message_cb, pipe)
    logging.error('ater adding message callback')

    return (source, pipe)


def _speech(speaker, words):
    speaker[0].props.pitch = speech.pitch
    speaker[0].props.rate = speech.rate
    speaker[0].props.voice = speech.voice[1]
    speaker[0].props.text = words
    speaker[1].set_state(Gst.State.NULL)
    speaker[1].set_state(Gst.State.PLAYING)

Gst.init_check(None)
info_speaker = _create_pipe()
play_speaker = _create_pipe()
play_speaker[0].props.track = 2


def voices():
    return info_speaker[0].props.voices


def say(words):
    _speech(info_speaker, words)


def play(words):
    _speech(play_speaker, words)


def is_stopped():
    for i in play_speaker[1].get_state(1):
        if isinstance(i, Gst.State) and i == Gst.State.NULL:
            return True
    return False


def pause():
    play_speaker[1].set_state(Gst.State.NULL)


def stop():
    play_speaker[1].set_state(Gst.State.NULL)
    play_speaker[0].props.text = ''
    if speech.reset_cb is not None:
        speech.reset_cb()
    if speech.reset_buttons_cb is not None:
        speech.reset_buttons_cb()