Metadata-Version: 2.0
Name: command-lifecycle
Version: 2.0.0
Summary: Python library to manage the life-cycle of voice commands.
Home-page: https://github.com/richtier/voice-command-lifecycle
Author: Richard Tier
Author-email: rikatee@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules

Voice Command Lifecycle
=======================

|code-climate-image| |circle-ci-image| |codecov-image|

**Python library to manage the life-cycle of voice commands. Useful
working with Alexa Voice Service.**

--------------

Installation
------------

.. code:: bash

    pip install command_lifecycle

Wakeword detector
~~~~~~~~~~~~~~~~~

A wakeword is a specific word that triggers the code to spring into
action. It allows your code to be idle until the specific word is
uttered.

The audio lifecycle uses
`snowboy <https://github.com/Kitt-AI/snowboy#compile-a-python-wrapper>`__
to determine if the wakeword was uttered. The library will need to be
installed first.

Once you have compiled snowboy, copy the compiled ``snowboy`` folder to
the top level of you project. By default, the folder structure should
be:

::

    .
    ├── ...
    ├── snowboy
    |   ├── snowboy-detect-swig.cc
    |   ├── snowboydetect.py
    |   └── resources
    |       ├── alexa.umdl
    |       └── common.res
    └── ...

If the default structure does not suit your needs can customize the
`wakeword detector <#wakeword>`__.

Usage
-----

You should send a steady stream of audio to to the lifecycle by
repetitively calling ``lifecycle.extend_audio(some_audio_bytes)``. If
the wakeword such as "Alexa" (default), or "ok, Google" was uttered then
``handle_command_started`` is called. ``handle_command_finised`` is then
called once the command audio that followed the wakeword has finished.

Microphone audio
~~~~~~~~~~~~~~~~

.. code:: py

    import pyaudio

    import command_lifecycle


    class AudioLifecycle(command_lifecycle.BaseAudioLifecycle):

        def handle_command_started(self):
            super().handle_command_started()
            print('The audio contained the wakeword!')

        def handle_command_finised(self):
            super().handle_command_finised()
            print('the command in the audio has finished')

    lifecycle = AudioLifecycle()

    p = pyaudio.PyAudio()
    stream = p.open(format=pyaudio.paInt16, channels=1, rate=16000, input=True)

    try:
        print('listening. Start by saying "Alexa". Press CTRL + C to exit.')
        while True:
            lifecycle.extend_audio(stream.read(1024))
    finally:
        stream.stop_stream()
        stream.close()
        p.terminate()

File audio
~~~~~~~~~~

.. code:: py

    import wave

    import command_lifecycle


    class AudioLifecycle(command_lifecycle.BaseAudioLifecycle):
        def handle_command_started(self):
            super().handle_command_started()
            print('The audio contained the wakeword!')

        def handle_command_finised(self):
            super().handle_command_finised()
            print('the command in the audio has finished')


    lifecycle = AudioLifecycle()
    with wave.open('./tests/resources/alexa_what_time_is_it.wav', 'rb') as f:
        while f.tell() < f.getnframes():
            lifecycle.extend_audio(f.readframes(1024))
        # pad with silence at the end. See "Expecting slower or faster commands".
        for i in range(lifecycle.timeout_manager.remaining_silent_seconds + 1):
            lifecycle.extend_audio(bytes([0, 0]*(1024*9)))

Usage with Alexa
~~~~~~~~~~~~~~~~

``command_lifecycle`` is useful for interacting with voice services. The
lifecycle waits until a wakeword was issued and then start streaming the
audio command to the voice service (using `Alexa Voice Service
Client <https://github.com/richtier/alexa-voice-service-client>`__),
then do something useful with the response:

.. code:: py

    from avs_client.avs_client.client import AlexaVoiceServiceClient
    import pyaudio

    import command_lifecycle


    class AudioLifecycle(command_lifecycle.BaseAudioLifecycle):
        alexa_client = AlexaVoiceServiceClient(
            client_id='my-client-id'
            secret='my-secret',
            refresh_token='my-refresh-token',
        )

        def __init__(self):
            self.alexa_client.connect()
            super().__init__()

        def handle_command_started(self):
            super().handle_command_started()
            audio_file = command_lifecycle.to_audio_file()
            alexa_response_audio = self.alexa_client.send_audio_file(audio_file)
            if alexa_response_audio:
                # do something with the AVS audio response, e.g., play it.

    lifecycle = AudioLifecycle()

    p = pyaudio.PyAudio()
    stream = p.open(format=pyaudio.paInt16, channels=1, rate=16000, input=True)

    try:
        print('listening. Start by saying "Alexa". Press CTRL + C to exit.')
        while True:
            lifecycle.extend_audio(stream.read(1024))
    finally:
        stream.stop_stream()
        stream.close()
        p.terminate()

Customization
-------------

Wakeword
~~~~~~~~

The default wakeword is "Alexa". This can be changed by sub-classing
``command_lifecycle.wakeword.SnowboyWakewordDetector``:

.. code:: py


    from command_lifecycle import wakeword


    class MySnowboyWakewordDetector(wakeword.SnowboyWakewordDetector):
        decoder_models = [
            {
                'name': 'CUSTOM',
                'model': b'path/to/custom-wakeword-model.umdl'
                'sensitivity': b'0.5',
            }
        ]


    class AudioLifecycle(lifecycle.BaseAudioLifecycle):
        audio_detector_class = MySnowboyWakewordDetector

        def handle_command_started(self):
            super().handle_command_started()
            print('The audio contained the wakeword!')

        def handle_command_finised(self):
            super().handle_command_finised()
            print('the command in the audio has finished')


    lifecycle = AudioLifecycle()
    # now load the audio into lifecycle

See the `Snowboy
docs <https://github.com/Kitt-AI/snowboy#hotword-as-a-service>`__ for
steps on creating custom wakeword models.

Multiple Wakewords
~~~~~~~~~~~~~~~~~~

Triggering different behaviour for different wakeword may be desirable.
To do this use multiple items in ``decoder_models``:

.. code:: py

    from command_lifecycle import wakeword


    class MyMultipleWakewordDetector(wakeword.SnowboyWakewordDetector):
        GOOGLE = 'GOOGLE'

        decoder_models = wakeword.SnowboyWakewordDetector.decoder_models + [
            {
                'name': GOOGLE,
                'model': b'path/to/okgoogle.umdl',
                'sensitivity': b'0.5',
            }
        ]


    class AudioLifecycle(lifecycle.BaseAudioLifecycle):
        audio_detector_class = MyMultipleWakewordDetector

        def handle_command_started(self):
            name = self.audio_detector.get_uttered_wakeword_name(self.audio_buffer)
            if name == self.audio_detector.ALEXA:
                print('Alexa standing by')
            elif name == self.audio_detector.GOOGLE:
                print('Google at your service')
            super().handle_command_started()

You can download wakewords from
`here <https://snowboy.kitt.ai/dashboard>`__.

Wakeword detector
~~~~~~~~~~~~~~~~~

Snowboy is the default wakeword detector. Other wakeword detectors can
be used by sub-classing
``command_lifecycle.wakeword.BaseWakewordDetector`` and setting
``wakeword_detector_class`` to your custom class:

.. code:: py

    import wave

    from command_lifecycle import lifecycle, wakeword


    class MyCustomWakewordDetector(wakeword.BaseWakewordDetector):
        import_error_message = 'Cannot import wakeword library!'
        wakeword_library_import_path = 'path.to.wakeword.Library'

        def was_wakeword_uttered(self, buffer):
            # use the library to check if the audio in the buffer has the wakeword.
            # not `buffer.get()` returns the audio inside the buffer.
            ...

        def is_talking(self, buffer):
            # use the library to check if the audio in the buffer has audible words
            # not `buffer.get()` returns the audio inside the buffer.
            ...


    class AudioLifecycle(lifecycle.BaseAudioLifecycle):
        audio_detector_class = MyCustomWakewordDetector

        def handle_command_started(self):
            super().handle_command_started()
            print('The audio contained the wakeword!')

        def handle_command_finised(self):
            super().handle_command_finised()
            print('the command in the audio has finished')


    lifecycle = AudioLifecycle()
    # now load the audio into lifecycle

Expecting slower or faster commands
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The person giving the audio command might take a moment to collect their
thoughts before finishing the command. This silence could be interpreted
as the command ending, resulting in ``handle_command_finised`` being
called prematurely.

To avoid this the lifecycle tolerates some silence in the command before
the lifecycle timesout the command. This silence can happen at the
beginning or middle of the command. Note a side-effect of this is there
will be a pause between when the person has stopped talking and when
``handle_command_finised`` is called.

To change this default behaviour ``timeout_manager_class`` can be
changed. The available timeout managers are:

+----------------------------+--------------------------------------------+
| Timeout manager            | Notes                                      |
+============================+============================================+
| ``ShortTimeoutManager``    | Allows one second of silence.              |
+----------------------------+--------------------------------------------+
| ``MediumTimeoutManager``   | **default** Allows 2 seconds of silence.   |
+----------------------------+--------------------------------------------+
| ``LongTimeoutManager``     | Allows three seconds of silence.           |
+----------------------------+--------------------------------------------+

To make a custom timeout manager create a subclass of
``command_lifecycle.timeout.BaseTimeoutManager``:

.. code:: py


    import wave

    from command_lifecycle import timeout, wakeword


    class MyCustomTimeoutManager(timeout.BaseTimeoutManager):
        allowed_silent_seconds = 4


    class AudioLifecycle(lifecycle.BaseAudioLifecycle):
        timeout_manager_class = MyCustomTimeoutManager

Unit test
---------

To run the unit tests, call the following commands:

.. code:: sh

    pip install -r requirements-dev.txt
    ./scripts/tests.sh

Versioning
----------

We use `SemVer <http://semver.org/>`__ for versioning. For the versions
available, see the
`PyPI <https://pypi.org/project/command-lifecycle/#history>`__.

Other projects
--------------

This library is used by
`alexa-browser-client <https://github.com/richtier/alexa-browser-client>`__,
which allows you to talk to Alexa from your browser.

.. |code-climate-image| image:: https://codeclimate.com/github/richtier/voice-command-lifecycle/badges/gpa.svg
   :target: https://codeclimate.com/github/richtier/voice-command-lifecycle
.. |circle-ci-image| image:: https://circleci.com/gh/richtier/voice-command-lifecycle/tree/master.svg?style=svg
   :target: https://circleci.com/gh/richtier/voice-command-lifecycle/tree/master
.. |codecov-image| image:: https://codecov.io/gh/richtier/voice-command-lifecycle/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/richtier/voice-command-lifecycle


