Skip to content

Commit 253baeb

Browse files
authored
Merge pull request #91 from Moriango/master
Fixed spelling mistakes
2 parents 6a19e39 + 23f77d5 commit 253baeb

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inaSpeechSegmenter is a CNN-based audio segmentation toolkit suited to the tasks
99

1010
It splits audio signals into homogeneous zones of speech, music and noise.
1111
Speech zones are split into segments tagged using speaker gender (male or female).
12-
Male and female classification models are optimized for French language since they were trained using French speakers (accoustic correlates of speaker gender are language dependent).
12+
Male and female classification models are optimized for French language since they were trained using French speakers (acoustic correlates of speaker gender are language dependent).
1313
Zones corresponding to speech over music or speech over noise are tagged as speech.
1414
Singing voice is tagged as music.
1515

@@ -40,7 +40,7 @@ $ sudo apt-get install ffmpeg
4040

4141
### PIP installation
4242
```bash
43-
# create a python 3 virtual environement and activate it
43+
# create a python 3 virtual environment and activate it
4444
$ virtualenv -p python3 env
4545
$ source env/bin/activate
4646
# install framework and dependencies
@@ -52,7 +52,7 @@ $ pip install inaSpeechSegmenter
5252
```bash
5353
# clone git repository
5454
$ git clone https://github.com/ina-foss/inaSpeechSegmenter.git
55-
# create a python 3 virtual environement and activate it
55+
# create a python 3 virtual environment and activate it
5656
$ virtualenv -p python3 env
5757
$ source env/bin/activate
5858
# install framework and dependencies
@@ -105,7 +105,7 @@ inaSpeechSegmenter has been presented at the IEEE International Conference on Ac
105105
```
106106

107107
inaSpeechSegmenter won [MIREX 2018 speech detection challenge](http://www.music-ir.org/mirex/wiki/2018:Music_and_or_Speech_Detection_Results)
108-
Details on the speech detection submodule can be found bellow:
108+
Details on the speech detection submodule can be found below:
109109

110110
```bibtex
111111
@inproceedings{ddoukhanmirex2018,

inaSpeechSegmenter/sidekit_mfcc.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,8 @@ def mfcc(input_sig,
314314
315315
- Pre-processing in time-domain (pre-emphasizing)
316316
- Compute the spectrum amplitude by windowing with a Hamming window
317-
- Filter the signal in the spectral domain with a triangular filter-bank, whose filters are approximatively
318-
linearly spaced on the mel scale, and have equal bandwith in the mel scale
317+
- Filter the signal in the spectral domain with a triangular filter-bank, whose filters are approximately
318+
linearly spaced on the mel scale, and have equal bandwidth in the mel scale
319319
- Compute the DCT of the log-spectrom
320320
- Log-energy is returned as first coefficient of the feature vector.
321321

scripts/ina_speech_segmenter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
description = """Do Speech/Music(/Noise) and Male/Female segmentation and store segmentations into CSV files. Segments labelled 'noEnergy' are discarded from music, noise, speech and gender analysis. 'speech', 'male' and 'female' labels include speech over music and speech over noise. 'music' and 'noise' labels are pure segments that are not supposed to contain speech.
3737
"""
3838
epilog="""
39-
Detailled description of this framework is presented in the following study:
39+
Detailed description of this framework is presented in the following study:
4040
Doukhan, D., Carrive, J., Vallet, F., Larcher, A., & Meignier, S. (2018, April). An open-source speaker gender detection framework for monitoring gender equality. In 2018 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) (pp. 5214-5218). IEEE.
4141
"""
4242

0 commit comments

Comments
 (0)