Changeset 35
- Timestamp:
- 08/13/10 15:08:14 (3 years ago)
- Location:
- trunk
- Files:
-
- 5 modified
-
INSTALL (modified) (1 diff)
-
MANIFEST.in (modified) (1 diff)
-
README (modified) (2 diffs)
-
TODO (modified) (1 diff)
-
radiomateconfig.sample.py (modified) (3 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
trunk/INSTALL
r33 r35 29 29 ============ 30 30 31 - To install the radiomate python package, type from the command line: 32 python setup.py install 33 34 - To initalize the MySQL database, the radiomate0.sql script is provided. 35 36 - Copy the radiomateconfig.cgi file to your Web server's CGI directory. 37 38 - Copy radiomateconfig.sample.py to /etc/radiomateconfig.py and edit it to 39 reflect your settings and preferences. 40 41 42 43 -
trunk/MANIFEST.in
r34 r35 1 1 include README 2 2 include INSTALL 3 include TODO4 3 include COPYING 5 4 include radiomate0.sql -
trunk/README
r33 r35 3 3 =============================================================================== 4 4 5 RadioMate is a Free Engine for Distributed Web Radios, i.e. Web Radios in which 6 the users can broadcast from home or wherever there is a connection to the 7 Internet. 8 9 While Savonet Liquidsoap [http://savonet.sourceforge.net] already provides a 10 scriptable language and engine for Web Radios with a centralized schedule, 11 RadioMate wraps and extends it to be used for Web Radios in which the schedule 12 is managed in an horizontal and distributed way. 13 5 14 Website: http://radiomate.org 6 Mailing List: 15 Mailing List: https://lists.subsignal.org/mailman/listinfo/radiomate 16 7 17 8 18 Structure … … 46 56 ============================== 47 57 48 Please refer to the INSTALL file. 58 For system requirements and installation instructions please refer to the 59 INSTALL file. 60 61 For what concerns configuration, radiomate will look for a file called 62 radiomateconfig.py inside the /etc/ directory. A sample configuration file, 63 radiomateconfig.sample.py, is provided, which contains commented sample 64 configuration parameters. 49 65 50 66 -
trunk/TODO
r29 r35 2 2 3 3 - when adding audio file take info from ID3 tags 4 - search by tag (new tables?)4 - test searching by tag 5 5 - add "limit" attributes to JSON requests 6 6 7 - couchdb DAO8 - WSGI7 - port to couchdb 8 - make a WSGI script instead of the CGI 9 9 10 10 - grep -r TODO * -
trunk/radiomateconfig.sample.py
- Property svn:keywords set to Id
r34 r35 8 8 # Name and URL of the radio 9 9 RADIONAME = "Radio Mate" 10 RADIONAME = "Grr"11 10 RADIOURL = "http://radiomate.org" 12 11 … … 15 14 LOGGINGLEVEL = logging.DEBUG 16 15 17 # Database parameters16 # MySQL database parameters 18 17 DBHOST="127.0.0.1" 19 18 DBUSER="mate" … … 28 27 29 28 # Play this if there are no transmissions 30 GLOBALFALLBACKPLAYLIST = 729 GLOBALFALLBACKPLAYLIST = 1 31 30 32 31 # Icecast server parameters, to which the stream is sent