uploading works, but AV info is not automatically detected and video activation featu...
[living-lab-site.git] / cis / config.py
1 #!/usr/bin/env python
2
3 import logger
4
5 # Make here all necessary imports required for API classes.
6 from api import ffmpeg
7 from api import ftp
8
9
10 # === GENERAL CONFIGURATIONS ===
11 LOG_LEVEL = logger.LOG_LEVEL_DEBUG
12 # Security features are experimental, incomplete and may not work.
13 SECURITY = False
14 # CIS periodically scans TORRENTS_PATH for new torrents at
15 # START_DOWNLOADS_INTERVAL seconds. Note that this is a backup measure, because
16 # CIS normally finds out about new torrents from start_torrents messages.
17 START_DOWNLOADS_INTERVAL = 24 * 3600.0 # Once a day
18
19
20 # === FILE TRANSFER CONFIGURATIONS ===
21 # Path from the Web Server where the raw input video file is stored.
22 WS_UPLOAD_PATH = 'devel/data/upload'
23 # Path from the Web Server where the output torrent files will be stored.
24 WS_TORRENTS_PATH = 'devel/data/torrents'
25 # Path from the Web Server where the output thumbnail image files will be
26 # stored.
27 WS_THUMBS_PATH = 'devel/data/thumbs'
28
29
30 # === URLS ===
31 #BT_TRACKER = "http://p2p-next-10.grid.pub.ro:6969/announce"
32 # BitTorrent tracker URL.
33 BT_TRACKER = 'http://p2p-next-10.grid.pub.ro:6969/announce'
34 # Web server's URL for content ingestion completion. P2P-Tube uses
35 # http://<site>/video/cis_completion .
36 WS_COMPLETION = 'http://p2p-next-03.grid.pub.ro:8081/cis_completion'
37 #WS_COMPLETION = 'http://koala.cs.pub.ro/video/cis_completion'
38
39
40 # === CIS PATHS ===
41 # RAW_VIDEOS_PATH, THUMBS_PATH and MEDIA_PATH need not to be in distributed
42 # file system.
43 # Temporary directory for uploaded videos transfered from the web server.
44 RAW_VIDEOS_PATH = '/home/p2p/tmp/raw'
45 # Temporary directory for image thumbnails.
46 THUMBS_PATH = '/home/p2p/tmp/thumbs'
47 # Temporary directory for converted videos.
48 MEDIA_PATH = '/home/p2p/media'
49 # TORRENTS_PATH contains torrents files shared by all CIS machines and needs to
50 # be placed in a distributed file system.
51 TORRENTS_PATH = '/home/p2p/export/p2p-tube/torrents'
52
53
54 # === EXTERNAL PROGRAMS API CLASSES ===
55 # API class for a prgram which retrives audio/video information, like duration.
56 AVINFO_CLASS = ffmpeg.FFprobeAVInfo
57 # API class for a prgram which transcodes an audio/video file.
58 TRANSCODER_CLASS = ffmpeg.FFmpegTranscoder
59 # API class for a prgram which extracts thumbnail images from a file.
60 THUMB_EXTRACTOR_CLASS = ffmpeg.FFmpegThumbExtractor
61 # API class for a prgram which transfers files between Web Server and CIS.
62 FILE_TRANSFERER_CLASS = ftp.FTPFileTransferer
63
64
65 # === EXTERNAL PROGRAMS BINARY FILES ===
66 # Set this values to None if you want default values provided by the API
67 # class to be used. It may be useful to complete this parameters if you
68 # compiled the third-party binaries from sources and you don't have
69 # administrative privileges to install them.
70 # Binary of a prgram which retrives audio/video information, like duration.
71 AVINFO_BIN = None
72 # Binary of a prgram which transcodes an audio/video file.
73 TRANSCODER_BIN = None
74 # Binary of a prgram which extracts thumbnail images from a file.
75 THUMB_EXTRACTOR_BIN = None
76 # Binary of a prgram which transfers files between Web Server and CIS.
77 FILE_TRANSFERER_BIN = None