Giter Site home page Giter Site logo

aiyu-ayaan / tts-engine Goto Github PK

View Code? Open in Web Editor NEW
18.0 1.0 3.0 122 KB

The TTS-Engine is a simple and efficient library that provides Text-to-Speech functionality for Android applications. The library uses state-of-the-art speech synthesis technology to generate high-quality speech from text, and supports multiple languages and voices.

License: MIT License

Kotlin 100.00%
android jetpack-compose text-speech-app text-to-speech tts kotlin kotlin-android tts-android texttospeech-android texttospeech-api

tts-engine's Introduction

TTS Engine

A simple and efficient library that provides Text-to-Speech functionality for Android applications.

Features

  • Support for multiple languages and voices
  • Easy-to-use API

Installation

Add the library to your project using Gradle:

allprojects {
		repositories {
			maven { url 'https://jitpack.io' }
		}
	}
dependencies {
	        implementation 'com.github.aiyu-ayaan:tts-engine:Tag'
	}

Usage

Using the library is straightforward and simple. Here is an example of how to use it in your code:

    TextToSpeechHelper
        .getInstance(activity)
        .registerLifecycle(owner)
        .speak(message)
        .highlight()
        .onHighlight { pair ->
            Log.d(TAG, "speak: ${pair.first} - ${pair.second}")
        }
        .onDone {
            Log.d(TAG, "speak: done")
        }
        .onError {
            Log.d(TAG, "speak: $it")
        }
  • activity is the activity that will be used to initialize the TTS engine.

  • owner is the lifecycle owner that will be used to register the TTS engine lifecycle observer and can handle the lifecycle events.

  • message is the text that will be spoken.

  • highlight() is an optional method that will highlight the spoken words in the text.

  • onHighlight() is an optional method that will be called when a word is spoken.

  • onDone() is an method that will be called when the text is spoken.

  • onError() is an method that will be called when an error occurs.

Code Example

For Jetpack Compose, check out the example below:

MainActivity.kt

class MainActivity : ComponentActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContent {
            TTSLibraryTheme {
                val viewModel = MainViewModel()
                val resource = stringResource(id = R.string.des)
                val text = remember { resource }

//                screen
                Surface(
                    modifier = Modifier.fillMaxSize(),
                    color = MaterialTheme.colorScheme.background
                ) {
                    Screen(
                        state = text,
                        viewModel = viewModel,
                    ) {
                        speak(
                            this,
                            this as LifecycleOwner,
                            text,
                            viewModel
                        )
                    }
                }

            }
        }
    }
}

@Composable
fun Screen(
    modifier: Modifier = Modifier,
    viewModel: MainViewModel,
    state: String,
    onButtonClick: () -> Unit = {},
) {
    Column(
        modifier = modifier
            .fillMaxSize()
            .padding(16.dp),
        verticalArrangement = Arrangement.Center,
        horizontalAlignment = Alignment.CenterHorizontally
    ) {
        val s = viewModel.getState().value
        TTSText(
            textAlign = TextAlign.Center,
            textHighlightBuilder = TextHighlightBuilder(
                text = state,
                s
            ),
        )
        Spacer(modifier = Modifier.padding(16.dp))
        Button(onClick = onButtonClick) {
            Text(text = stringResource(id = R.string.speak))
        }
    }
}


private fun speak(
    activity: Activity,
    owner: LifecycleOwner,
    message: String,
    viewModel: MainViewModel
) {
    TextToSpeechHelper
        .getInstance(activity)
        .registerLifecycle(owner)
        .speak(message)
        .highlight()
        .onHighlight { pair ->
            viewModel.updateState(pair)
        }
        .onDone {
            Log.d(TAG, "speak: done")
        }
        .onError {
            Log.d(TAG, "speak: $it")
        }
}

MainViewModel.kt

class MainViewModel : ViewModel() {
    private val state = mutableStateOf(Pair(0, 0))

    fun updateState(pair: Pair<Int, Int>) {
        state.value = pair
    }

    fun getState(): State<Pair<Int, Int>> = state
}

For XML layouts, check out the example below:

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        val textView = findViewById<TextView>(R.id.text_view)
        val button = findViewById<Button>(R.id.button)
        val message = getString(R.string.des)
        button.setOnClickListener {
            speak(
                this,
                this as LifecycleOwner,
                message,
                textView
            )
        }
    }

    private fun speak(
        activity: Activity,
        owner: LifecycleOwner,
        message: String,
        textView: TextView
    ) {
        TextToSpeechHelper
            .getInstance(activity)
            .registerLifecycle(owner)
            .speak(message)
            .highlight()
            .onHighlight { pair ->
                textView.highlightText(pair.first, pair.second)
            }
            .onDone {
                Log.d(TAG, "speak: done")
            }
            .onError {
                Log.d(TAG, "speak: $it")
            }
    }
}
  • TextView.highlightText() is an extension method that highlights the spoken words in the text.

Methods in TextToSpeechHelper class

  • Method 1: registerLifecycle(owner: LifecycleOwner) Registers the lifecycle of the given owner.

  • Method 2: initTTS() Initializes the Text-to-Speech engine.

  • Method 3: speak(message: String) Generates speech from the given message.

  • Method 4: highlight() Highlights the text in the TextView.

  • Method 5: removeHighlight() Removes the highlight from the text in the TextView.

  • Method 6: destroy(action: (() -> Unit)) Destroys the Text-to-Speech engine and removes all listeners.

  • Method 7: onStart(onStartListener: () -> Unit) Sets the onStart listener.

  • Method 8: onDone(onCompleteListener: () -> Unit) Sets the onDone listener.

  • Method 9: onError(onErrorListener: (String) -> Unit) Sets the onError listener.

  • Method 10: onHighlight(onHighlightListener: (Pair<Int, Int>) -> Unit) Sets the onHighlight listener.

  • Method 11: setCustomActionForDestroy(action: () -> Unit) Sets the custom action to be performed when the Text-to-Speech engine is destroyed.

  • Method 12: setLanguage(locale: Locale) Sets the language for the Text-to-Speech engine.

  • Method 13: setPitchAndSpeed(pitch: Float, speed: Float) Sets the pitch and speed of the speech generated by the Text-to-Speech engine.

  • Method 14: resetPitchAndSpeed() Resets the pitch and speed of the speech generated by the Text-to-Speech engine to the default values.

Contributing

If you would like to contribute to the library, please fork the repository and create a pull request.

License

MIT License

Copyright (c) 2023 Ayaan

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
`

tts-engine's People

Contributors

aiyu-ayaan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

tts-engine's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.