diff options
author | Fernando Gutierrez <fergtm@nil.mx> | 2021-03-03 22:16:37 +1100 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2021-03-03 22:21:11 +1100 |
commit | c2e93da0ce746eb7d6ffe79eec4f84c5d844328d (patch) | |
tree | aa60e1aa03862563d4e26a14a518f9d3799a5461 /mediagoblin/tests/test_audio.py | |
parent | 83429a8658986ccd1c54e7085d5df31b01fe16fc (diff) | |
download | mediagoblin-c2e93da0ce746eb7d6ffe79eec4f84c5d844328d.tar.lz mediagoblin-c2e93da0ce746eb7d6ffe79eec4f84c5d844328d.tar.xz mediagoblin-c2e93da0ce746eb7d6ffe79eec4f84c5d844328d.zip |
Reinstate audio spectrograms on Python 3 [#5610].
The `audiotospectrogram` module is a complete rewrite of the existing spectrogram
code with support for Python 3. This allows us to drop the bundled `freesound`
library and Python 2-only `audioprocessing` and `spectrogram` modules.
Signed-off-by: Ben Sturmfels <ben@sturm.com.au>
Diffstat (limited to 'mediagoblin/tests/test_audio.py')
-rw-r--r-- | mediagoblin/tests/test_audio.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mediagoblin/tests/test_audio.py b/mediagoblin/tests/test_audio.py index 9826ceb1..62d582ff 100644 --- a/mediagoblin/tests/test_audio.py +++ b/mediagoblin/tests/test_audio.py @@ -25,7 +25,6 @@ import imghdr #os.environ['GST_DEBUG'] = '4,python:4' pytest.importorskip("gi.repository.Gst") -pytest.importorskip("scikits.audiolab") import gi gi.require_version('Gst', '1.0') from gi.repository import Gst |