changeset 69:d52581cfc9b6

Merge branch 'master' of https://github.com/amsehili/auditok into dev
author Amine SEHILI <amine.sehili@gmail.com>
date Sat, 28 Jan 2017 13:03:37 +0100
parents a0843d57697b (current diff) 8e1ac2ebdcad (diff)
children 8cfe5e7dc91e
files
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/demos/audio_tokenize_demo.py	Sat Jan 28 12:54:02 2017 +0100
+++ b/demos/audio_tokenize_demo.py	Sat Jan 28 13:03:37 2017 +0100
@@ -13,7 +13,7 @@
 
    validator = AudioEnergyValidator(sample_width=asource.get_sample_width(), energy_threshold=65)
 
-   # Defalut analysis window is 10 ms (float(asource.get_block_size()) / asource.get_sampling_rate())
+   # Default analysis window is 10 ms (float(asource.get_block_size()) / asource.get_sampling_rate())
    # min_length=20 : minimum length of a valid audio activity is 20 * 10 == 200 ms
    # max_length=400 :  maximum length of a valid audio activity is 400 * 10 == 4000 ms == 4 seconds
    # max_continuous_silence=30 : maximum length of a tolerated  silence within a valid audio activity is 30 * 30 == 300 ms 
--- a/doc/apitutorial.rst	Sat Jan 28 12:54:02 2017 +0100
+++ b/doc/apitutorial.rst	Sat Jan 28 13:03:37 2017 +0100
@@ -349,7 +349,7 @@
      
     validator = AudioEnergyValidator(sample_width=asource.get_sample_width(), energy_threshold=65)
     
-    # Defalut analysis window is 10 ms (float(asource.get_block_size()) / asource.get_sampling_rate())
+    # Default analysis window is 10 ms (float(asource.get_block_size()) / asource.get_sampling_rate())
     # min_length=20 : minimum length of a valid audio activity is 20 * 10 == 200 ms
     # max_length=4000 :  maximum length of a valid audio activity is 400 * 10 == 4000 ms == 4 seconds
     # max_continuous_silence=30 : maximum length of a tolerated  silence within a valid audio activity is 30 * 30 == 300 ms