Sha256: 4e00582cd64efd5acbd5e32e1dadf47721c47ca994cffe43984cb5ecc7986702

Contents?: true

Size: 632 Bytes

Versions: 3

Compression:

Stored size: 632 Bytes

Contents

# encoding: utf-8

module Punchblock
  module Translator
    class Freeswitch
      module Component
        class TTSOutput < AbstractOutput
          private

          def do_output(engine, default_voice = nil)
            register_handler :es, :event_name => 'CHANNEL_EXECUTE_COMPLETE' do |event|
              send_complete_event success_reason
            end
            voice = @component_node.voice || default_voice || 'kal'
            application :speak, [engine, voice, document].join('|')
          end

          def document
            @component_node.ssml.to_s
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
punchblock-1.9.4 lib/punchblock/translator/freeswitch/component/tts_output.rb
punchblock-1.9.3 lib/punchblock/translator/freeswitch/component/tts_output.rb
punchblock-1.9.2 lib/punchblock/translator/freeswitch/component/tts_output.rb