diff options
author | Ben Sturmfels <ben@sturm.com.au> | 2019-09-12 19:58:32 +1000 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2019-09-12 19:59:11 +1000 |
commit | 97dcfe3725d11bd4d2212a232c156c25810322a2 (patch) | |
tree | 613e79ec17d3b3f13ad5440748f852141656245a /docs/source/siteadmin | |
parent | 8f18381bbc7d12e9a988d5ce332491ba487fc73d (diff) | |
download | mediagoblin-97dcfe3725d11bd4d2212a232c156c25810322a2.tar.lz mediagoblin-97dcfe3725d11bd4d2212a232c156c25810322a2.tar.xz mediagoblin-97dcfe3725d11bd4d2212a232c156c25810322a2.zip |
Work around lack of scikits.audiolab support on Python 3.
Diffstat (limited to 'docs/source/siteadmin')
-rw-r--r-- | docs/source/siteadmin/media-types.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/source/siteadmin/media-types.rst b/docs/source/siteadmin/media-types.rst index 8f9239be..e06739ec 100644 --- a/docs/source/siteadmin/media-types.rst +++ b/docs/source/siteadmin/media-types.rst @@ -131,10 +131,13 @@ To install these on Debianoid systems, run:: not compile it with alsa support. Alsa support is not necessary for the GNU MediaGoblin application. -Then install ``scikits.audiolab`` for the spectrograms:: +If you're running Python 2, install ``scikits.audiolab`` for the spectrograms:: ./bin/pip install scikits.audiolab +Audio spectrograms are currently not available on Python 3, since scikits.audiolab +does not provide Python 3 support. + Add ``[[mediagoblin.media_types.audio]]`` under the ``[plugins]`` section in your ``mediagoblin.ini`` and restart MediaGoblin. |