X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=blobdiff_plain;f=cis%2Fconfig.py;h=fcc629bd437e6b91db374ef19f5134e74c951c91;hb=2aecadba1f242a0dcf68614a6aa602282f020b41;hp=d21fb5652389c23631b8df69fca43673115aa928;hpb=80dc3cb400b8a253bab92ba129533af4f8f906cc;p=living-lab-site.git diff --git a/cis/config.py b/cis/config.py index d21fb56..fcc629b 100644 --- a/cis/config.py +++ b/cis/config.py @@ -1,16 +1,44 @@ #!/usr/bin/env python # Make here all necessary imports required for API classes. -from api import ffmpeg +from api import avhandling +from api import file_transfer -# External programs API classes. -TRANSCODER_CLASS = ffmpeg.FFmpegTranscoder -THUMB_EXTRACTER_CLASS = None # TODO -BT_CLIENT_CLASS = None # TODO -FILE_TRANSFERER_CLASS = None # TODO -# External programs binary file. None means default. +# === FILE TRANSFER CONFIGURATIONS === +# Path from the Web Server where the raw input video file is stored. +INPUT_PATH = 'Downloads' +# Path from the Web Server where the output torrent files will be stored. +OUTPUT_TORRENTS_PATH = 'Downloads/tmp1' +# Path from the Web Server where the output thumbnail image files will be +# stored. +OUTPUT_THUMBS_PATH = 'Downloads/tmp2' + + +# === BITTORRENT CONFIGURATIONS === +#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.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. +THUMB_EXTRACTOR_CLASS = avhandling.FFmpegThumbExtractor +# API class for a prgram which transfers files between Web Server and CIS. +FILE_TRANSFERER_CLASS = file_transfer.FTPFileTransferer + + +# === 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. +AVINFO_BIN = None +# Binary of a prgram which transcodes an audio/video file. TRANSCODER_BIN = None -THUMB_EXTRACTER_BIN = None -BT_CLIENT_BIN = None +# Binary of a prgram which extracts thumbnail images from a file. +THUMB_EXTRACTOR_BIN = None +# Binary of a prgram which transfers files between Web Server and CIS. FILE_TRANSFERER_BIN = None