diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-12-20 08:18:19 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-12-20 08:18:56 -0600 |
commit | 5ef7ab084f246b81897e248590be3a61898adc77 (patch) | |
tree | a0d88456d0cd1c6e237cbbe714a938fbdad2a7bb /docs/source | |
parent | 4d9b426ccfe4b6a3c875e75399011d7cf25aa379 (diff) | |
download | mediagoblin-5ef7ab084f246b81897e248590be3a61898adc77.tar.lz mediagoblin-5ef7ab084f246b81897e248590be3a61898adc77.tar.xz mediagoblin-5ef7ab084f246b81897e248590be3a61898adc77.zip |
Added documentation on how to add STL support, and notes on running ./bin/gmg dbupdate
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/siteadmin/media-types.rst | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/docs/source/siteadmin/media-types.rst b/docs/source/siteadmin/media-types.rst index 3b46c1b6..26852842 100644 --- a/docs/source/siteadmin/media-types.rst +++ b/docs/source/siteadmin/media-types.rst @@ -77,6 +77,12 @@ good/bad/ugly). On Debianoid systems:: gstreamer0.10-ffmpeg +Add ``mediagoblin.media_types.video`` to the ``media_types`` list in your +``mediagoblin_local.ini`` and restart MediaGoblin. + +Run:: + ./bin/gmg dbupdate + Now you should be able to submit videos, and mediagoblin should transcode them. @@ -117,8 +123,12 @@ Then install ``scikits.audiolab`` for the spectrograms:: ./bin/pip install scikits.audiolab Add ``mediagoblin.media_types.audio`` to the ``media_types`` list in your -``mediagoblin_local.ini`` and restart MediaGoblin. You should now be able to -upload and listen to audio files! +``mediagoblin_local.ini`` and restart MediaGoblin. + +Run:: + ./bin/gmg dbupdate + +You should now be able to upload and listen to audio files! Ascii art @@ -140,4 +150,26 @@ the list would look like this:: media_types = mediagoblin.media_types.image, mediagoblin.media_types.ascii +Run:: + ./bin/gmg dbupdate + Now any .txt file you uploaded will be processed as ascii art! + + +STL / 3d model support +====================== + +To enable the "STL" 3d model support plugin, first make sure you have +a recentish `Blender <http://blender.org>`_ installed and available on +your execution path. This feature has been tested with Blender 2.63. +It may work on some earlier versions, but that is not guaranteed (and +is surely not to work prior to Blender 2.5X). + +Add ``mediagoblin.media_types.stl`` to the ``media_types`` list in your +``mediagoblin_local.ini`` and restart MediaGoblin. + +Run:: + ./bin/gmg dbupdate + +You should now be able to upload .obj and .stl files and MediaGoblin +will be able to present them to your wide audience of admirers! |