paper: Abstract, Introduction and Next-Share sections completed
[living-lab-site.git] / cis / config.py
index 3e9ff69..fcc629b 100644 (file)
@@ -7,21 +7,22 @@ from api import file_transfer
 
 # === FILE TRANSFER CONFIGURATIONS ===
 # Path from the Web Server where the raw input video file is stored.
-INPUT_PATH = 'upload'
+INPUT_PATH = 'Downloads'
 # Path from the Web Server where the output torrent files will be stored.
-OUTPUT_TORRENTS_PATH = 'torrents'
+OUTPUT_TORRENTS_PATH = 'Downloads/tmp1'
 # Path from the Web Server where the output thumbnail image files will be
 # stored.
-OUTPUT_THUMBS_PATH = 'thumbs'
+OUTPUT_THUMBS_PATH = 'Downloads/tmp2'
 
 
 # === BITTORRENT CONFIGURATIONS ===
-BT_TRACKER = "http://p2p-next-10.grid.pub.ro:6969/announce"
+#BT_TRACKER = "http://p2p-next-10.grid.pub.ro:6969/announce"
+BT_TRACKER = "http://localhost:6969/announce"
 
 
 # === EXTERNAL PROGRAMS API CLASSES ===
 # API class for a prgram which retrives audio/video information, like duration.
-AVINFO_CLASS = avhandling.FFmpegAVInfo
+AVINFO_CLASS = avhandling.FFprobeAVInfo
 # API class for a prgram which transcodes an audio/video file.
 TRANSCODER_CLASS = avhandling.FFmpegTranscoder
 # API class for a prgram which extracts thumbnail images from a file.
@@ -30,7 +31,7 @@ THUMB_EXTRACTOR_CLASS = avhandling.FFmpegThumbExtractor
 FILE_TRANSFERER_CLASS = file_transfer.FTPFileTransferer
 
 
-# === EXTERNAL PROGRAMS BINARY FILES
+# === EXTERNAL PROGRAMS BINARY FILES ===
 # Set this values to None if you want default values provided by the API
 # class to be used.
 # Binary of a prgram which retrives audio/video information, like duration.