aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/siteadmin
diff options
context:
space:
mode:
authorBen Sturmfels <ben@sturm.com.au>2020-04-28 14:39:53 +1000
committerBen Sturmfels <ben@sturm.com.au>2020-04-28 18:19:57 +1000
commit4f3f70d15a4ab58819c788ce6732d51428a8de19 (patch)
tree148f7013cba5c31d715fe4281bdef4601a43b13d /docs/source/siteadmin
parent4a150fa29eb1f43f14540528855b95969bacc7dd (diff)
downloadmediagoblin-4f3f70d15a4ab58819c788ce6732d51428a8de19.tar.lz
mediagoblin-4f3f70d15a4ab58819c788ce6732d51428a8de19.tar.xz
mediagoblin-4f3f70d15a4ab58819c788ce6732d51428a8de19.zip
Remove spectrograms from Python 2 also [#5594].
For 0.10.0 we're removing specrograms entirely for reliability. This change only disables spectrograms and updates install docs and Dockerfiles. We still need to strip out all the spectrogram code and extlib/freesound/.
Diffstat (limited to 'docs/source/siteadmin')
-rw-r--r--docs/source/siteadmin/media-types.rst21
1 files changed, 5 insertions, 16 deletions
diff --git a/docs/source/siteadmin/media-types.rst b/docs/source/siteadmin/media-types.rst
index 2e21c340..10656cd6 100644
--- a/docs/source/siteadmin/media-types.rst
+++ b/docs/source/siteadmin/media-types.rst
@@ -119,27 +119,16 @@ Audio
=====
To enable audio, install the GStreamer and python-gstreamer bindings (as well
-as whatever GStreamer plugins you want, good/bad/ugly), SciPy and NumPy are
-also needed for the audio spectrograms.
+as whatever GStreamer plugins you want, good/bad/ugly).
To install these on Debianoid systems, run::
sudo apt-get install python3-gst-1.0 gstreamer1.0-plugins-{base,bad,good,ugly} \
- gstreamer1.0-libav python3-numpy python3-scipy libsndfile1-dev libasound2-dev
+ gstreamer1.0-libav
.. note::
- scikits.audiolab will display a warning every time it's imported if you do
- not compile it with alsa support. Alsa support is not necessary for the GNU
- MediaGoblin application.
-
-If you're running Python 2, install ``scikits.audiolab`` for the spectrograms::
-
-.. code-block:: bash
-
- ./bin/pip install numpy==1.9.1
- ./bin/pip install scikits.audiolab==0.10.2
-
-For Python 3 ``scikits.audiolab`` has no package yet. Instead of the cool
-specrogram image a static icon is used until we found a replacement. (#5467)
+ MediaGoblin previously generated spectrograms for uploaded audio. This
+ feature has been removed due to incompatibility with Python 3. We may
+ consider re-adding this feature in the future.
Add ``[[mediagoblin.media_types.audio]]`` under the ``[plugins]`` section in your
``mediagoblin.ini`` and restart MediaGoblin.