Statistics
| Branch: | Tag: | Revision:

root / snf-okeanos-site / okeanos_site / settings.py @ 2ce0636e

History | View | Annotate | Download (1.2 kB)

1
# the url that is linked with okenaos_site.views.index view
2
OKEANOS_SITE_URL = "/about"
3

    
4
# the url of the synnefo web application (synnefo.ui.views.home)
5
OKEANOS_APP_URL = "/ui"
6

    
7
# video sources (see okeanos_site/README)
8
# mp4 should be absolute url for flash player to work (flash video player
9
# is the fallback video player for IE)
10
#
11
# VIDEOS ARE NOT CONTAINED IN PROJECT FILES
12
OKEANOS_VIDEO_URL = {
13
    'mp4': {'src': 'http://okeanos.grnet.gr/intro_video/intro_video.m4v', 'codecs': 'avc1.42E01E, mp4a.40.2'},
14
    'webm': {'src': 'http://okeanos.grnet.gr/intro_video/intro_video.webm', 'codecs': 'vp8, vorbis'},
15
    'ogg': {'src': 'http://okeanos.grnet.gr/intro_video/intro_video.ogv', 'codecs': 'theora, vorbis'}
16
}
17

    
18
# The image placeholder url. Image gets displayed above video position
19
# as a placeholder when the video is stopped
20
OKEANOS_VIDEO_POSTER_IMAGE_URL = "/intro_video/intro_video.png"
21

    
22
# flowplayer swf url
23
# wget http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf
24
# wget http://releases.flowplayer.org/swf/flowplayer.controls-3.2.0.swf
25
#
26
# flowplayer.controls swf should be placed on the same url as flowplayer swf
27
OKEANOS_VIDEO_FLOWPLAYER_URL = "http://okeanos.grnet.gr/intro_video/flowplayer-3.2.1.swf"
28