update docs

This commit is contained in:
Adrien Beudin 2016-05-03 12:12:11 +02:00
parent cf42f9b8b4
commit bb6955f8e2
3 changed files with 24 additions and 1 deletions

View File

@ -4,7 +4,8 @@ Changelog
0.4 (unreleased) 0.4 (unreleased)
* RSS https://prosopopee.readthedocs.org/en/latest/configuration.html#rss by beudbeud * RSS https://prosopopee.readthedocs.org/en/latest/configuration.html#rss by beudbeud
* possibility to use video * possibility to use video in section
* add lazyload for pics
0.3.1 (2016-04-13) 0.3.1 (2016-04-13)

View File

@ -73,6 +73,20 @@ The meaning of the currently supported GraphicsMagick's settings is as follows :
Any GraphicsMagick setting can be customized on a per-image basis (either `cover` or `image`, see below). Any GraphicsMagick setting can be customized on a per-image basis (either `cover` or `image`, see below).
Video convertor
~~~~~~~~~~~~~~~
Prosopopée can use ffmpeg or libav and if you want you can customize the settings::
settings:
ffmpeg:
binary: "ffmpeg"
loglevel: "panic"
format: "webm"
resolution: "1280x720"
bitrate: "3900k"
preselect: "libvpx-720p"
Themes Themes
~~~~~~ ~~~~~~

View File

@ -12,6 +12,14 @@ Gallery building needs graphicsmagick library::
apt-get install graphicsmagick ffmpeg apt-get install graphicsmagick ffmpeg
An video convertor like ffmpeg::
apt-get install ffmpeg
or::
apt-get install libav-tools
Installation in virtualenv Installation in virtualenv
-------------------------- --------------------------