Detect silence segment from speech signal.
Project description
pySATEN
About
This library detects silence segment from speech signal.
Installation
$ pip install pysaten
Usage
Command line
The audio file is exported as 24-bit PCM at 48 kHz, mono.
$ pysaten_trim input.wav trimmed.wav
Python
import pysaten
# y: Target signal(numpy.ndarray), obtained using libraries such as librosa or soundfile.
# sr: Sampling rate.
# Get trimmed signal for the speech segment only.
y_trimmed: numpy.ndarray = pysaten.trim(y, sr)
# If you trim manually or want to get start/end time...
start_sec, end_sec = pysaten.vsed(y, sr)
y_trimmed = y[int(start_sec * sr) : int(end_sec * sr)]
For development (Linux only)
$ git clone https://gitlab.com/f-matano44/pysaten.git
$ poetry install
License
Copyright 2024 Fumiyoshi MATANO
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 3 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, see https://www.gnu.org/licenses/.
Acknowledgements
The following programs were used to [evaluate the performance of pysaten]. We would like to take this opportunity to express our gratitude.
- test/marblenet: Apache License Version 2.0
- test/rvad: MIT License
- inaSpeechSegmenter
Cite this
Library version 1.X (Non-peer-reviewed)
Japanese
俣野 文義,小口 純矢,森勢 将雅,``音声コーパス構築のための仮定を追加した発話区間検出法の提案と基礎評価,'' 日本音響学会第 152 回 (2024 年秋季) 研究発表会, pp.1161--1162 (2024.09).
English
F. Matano, J. Koguchi, M. Morise, ``Proposal and basic evaluation of a voice activity detection with additional assumptions for speech corpus construction,'' Proceedings of the 2024 Autumn meeting of the Acoustical Society of Japan, pp.1161--1162 (2024.09) (in Japanese).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pysaten-1.4.2.tar.gz.
File metadata
- Download URL: pysaten-1.4.2.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
049cb9a4ab964157c620836fa36d212699edc9b892429f63eb211700a225def8
|
|
| MD5 |
f4518dfb289467432bc38ad5b0d84b6a
|
|
| BLAKE2b-256 |
667fcd12853d7aba72abe72aa19f1ae88469008ce7c9a7ed7fc280c0abf7dba8
|
File details
Details for the file pysaten-1.4.2-py3-none-any.whl.
File metadata
- Download URL: pysaten-1.4.2-py3-none-any.whl
- Upload date:
- Size: 20.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59774de80f2f036bfe13fc463e0829bbe054c4912d1bfc870ad04db1f86fe27b
|
|
| MD5 |
61ab0662d75415aed448435c75727260
|
|
| BLAKE2b-256 |
bc26e6162046fa830484739b81909c5ed0d973edb62cabcf30aa5315c06e924c
|