You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/ISSUE_TEMPLATE.md
+2
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,8 @@ My **system** is <INSERT SYSTEM HERE>. (For example, "Ubuntu 16.04 LTS x64", "Wi
28
28
29
29
My **Python version** is <INSERTVERSIONHERE>. (You can check this by running `python -V`.)
30
30
31
+
My **Pip version** is <INSERTVERSIONHERE>. (You can check this by running `pip -V`.)
32
+
31
33
My **SpeechRecognition library version** is <INSERTVERSIONHERE>. (You can check this by running `python -c "import speech_recognition as sr;print(sr.__version__)"`.)
32
34
33
35
My **PyAudio library version** is <INSERTVERSIONHERE> / I don't have PyAudio installed. (You can check this by running `python -c "import pyaudio as p;print(p.__version__)"`.)
Try increasing the ``recognizer_instance.energy_threshold`` property. This is basically how sensitive the recognizer is to when recognition should start. Higher values mean that it will be less sensitive, which is useful if you are in a loud room.
161
161
162
162
This value depends entirely on your microphone or audio data. There is no one-size-fits-all value, but good values typically range from 50 to 4000.
163
163
164
+
Also, check on your microphone volume settings. If it is too sensitive, the microphone may be picking up a lot of ambient noise. If it is too insensitive, the microphone may be rejecting speech as just noise.
165
+
164
166
The recognizer can't recognize speech right after it starts listening for the first time.
@@ -245,9 +247,9 @@ To hack on this library, first make sure you have all the requirements listed in
245
247
246
248
To install/reinstall the library locally, run ``python setup.py install`` in the project `root directory <https://github.com/Uberi/speech_recognition>`__.
247
249
248
-
Before a release, version tags are created using ``git config --global user.signingkey DB45F6C431DE7C2DCD99FF7904882258A4063489 && git tag -s VERSION_GOES_HERE -m VERSION_GOES_HERE``.
250
+
Before a release, version tags are created using ``git config user.signingkey DB45F6C431DE7C2DCD99FF7904882258A4063489 && git tag -s VERSION_GOES_HERE -m "Version VERSION_GOES_HERE"``.
249
251
250
-
Releases are done by running either ``build.sh`` or ``build.bat``. These are bash and batch scripts, respectively, that automatically build Python source packages and `Python Wheels <http://pythonwheels.com/>`__, then upload them to PyPI.
252
+
Releases are done by running ``build.sh`` to build the Python source packages, sign them, and upload them to PyPI.
251
253
252
254
Testing
253
255
~~~~~~~
@@ -256,9 +258,9 @@ To run all the tests:
256
258
257
259
.. code:: bash
258
260
259
-
python -m unittest discover
261
+
python -m unittest discover --verbose
260
262
261
-
Testing is also done automatically by TravisCI. To set up the environment for offline/local Travis-like testing on a Debian-like system:
263
+
Testing is also done automatically by TravisCI, upon every push. To set up the environment for offline/local Travis-like testing on a Debian-like system:
Copy file name to clipboardexpand all lines: reference/pocketsphinx.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ Once installed, you can simply specify the language using the ``language`` param
30
30
Building PocketSphinx-Python from source
31
31
----------------------------------------
32
32
33
-
For Windows, it is recommended to install the precompiled Wheel packages. These are provided because building Pocketsphinx on Windows requires a lot of work, and can take hours to download and install all the surrounding software.
33
+
For Windows, it is recommended to install the precompiled Wheel packages in the ``third-party`` directory. These are provided because building Pocketsphinx on Windows requires a lot of work, and can take hours to download and install all the surrounding software.
34
34
35
35
For Linux and other POSIX systems (like OS X), you'll want to build from source. It should take less than two minutes on a fast machine.
0 commit comments