Python Forum
Is there py code that splits an audio containing speech per every sentence? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Is there py code that splits an audio containing speech per every sentence? (/thread-8780.html)



Is there py code that splits an audio containing speech per every sentence? - infuj02 - Mar-07-2018

Is there a python script or any utility that when fed with wav or mp3 (containing speech) can programmatically split it per sentence? Any feedback will be much appreciated. Thanks :)


RE: Is there py code that splits an audio containing speech per every sentence? - Larz60+ - Mar-07-2018

you might be able to use: https://pypi.python.org/pypi/dragonfly/0.6.5
once the speech is broken to text, you can split it the same as any other text.
I have no experience with this package, so don't know if it's capable of decoding speech from mp3,
but it's worth a try.