Advertisement
Guest User

Untitled

a guest
Mar 12th, 2011
675
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. ; NOTE: for any relative paths specified are relative to
  2. ; sc_trans and not to where the conf file is being stored
  3.  
  4.  
  5. ; here we will setup where the log and other related files
  6. ; will be stored. make sure that these folders exist else
  7. ; sc_trans will throw an error and will close itself down.
  8. logfile=./logs/sc_trans.log
  9. screenlog=0
  10.  
  11.  
  12. ; for the purpose of this test then we will not take into
  13. ; account the use of a calendar.xml file and so disable it
  14. calendarrewrite=0
  15.  
  16.  
  17. ; for testing we will only setup a single encoder though it
  18. ; is easy to add in additional encoder configurations and
  19. ; we are using an aac plus encoder as the default due to
  20. ; the licensing requirements for mp3 encoding as detailed
  21. ; in sc_trans.txt - section 2.5).
  22. encoder_0=aacp
  23. encoder_1=mp3
  24. bitrate_0=32000
  25. bitrate_1=32000
  26.  
  27.  
  28. ; this is where we define the details required for sc_trans
  29. ; to connect to the sc_serv instance being used where the
  30. ; details must match those specified in sc_serv_basic.conf
  31. outprotocol_0=3
  32. ;serverip_0=127.0.0.1
  33. serverip_0=10.56.75.81
  34. ; default is 8010 so we must match this port to sc_serv's
  35. serverport_0=8000
  36. ; this is the same as 'password' in sc_serv_basic.conf
  37. uvoxauth_0=testing
  38. ; this is the same as 'streamid' in sc_serv_basic.conf for
  39. ; the stream we are acting as the source for
  40. uvoxstreamid_0=1
  41. ; this is a name for the source we're creating and is used
  42. ; with the AJAX control api or can be left blank to get a
  43. ; generic name created in the form of 'endpointX' where 'X'
  44. ; is the index of the created source from sc_trans lists.
  45. endpointname_0=/Bob
  46.  
  47.  
  48. ; here you would provide any information to fill in details
  49. ; provided to clients about the stream. it us upto you what
  50. ; is entered though do not do anything which will annoy, etc
  51. streamtitle=mytitle
  52. streamurl=myurl
  53. genre=mygenre
  54. aim=myaimaddr
  55. irc=myirc
  56. icq=myicq
  57. public=0
  58.  
  59.  
  60. ; here we specify a playlist to use as the master list from
  61. ; which to play files from.
  62. playlistfile=./playlists/main.lst
  63.  
  64.  
  65. ; these options will allow you access the admin interfaces
  66. ; of sc_trans though also allows the 'testui' example to be
  67. ; accessed. remember to change the password, etc as needed
  68. adminport=7999
  69. adminuser=admin
  70. adminpassword=goaway
  71.  
  72.  
  73. ; this when used with the admin apis such as is used in the
  74. ; 'testui' example for the vumeter images
  75. vuimagedirectory=vuimages/
  76.  
  77.  
  78. ; if we want to have an intro file for when the client gets
  79. ; the stream or a backup file incase of our connection to
  80. ; the server failing then we can set these. this is needed
  81. ; as we are using 'outprotocol=3' which supports this (and
  82. ; is needed in place of the sc_serv defined values to work)
  83. ;serverintrofile=<specify_intro_filepath>
  84. ;serverbackupfile=<specify_backup_filepath>
  85.  
  86. unlockkeyname=My Name
  87. unlockkeycode=My Code
  88.  
  89. shuffledebug=1
  90. shoutcastdebug=1
  91. uvoxdebug=1
  92. gaindebug=1
  93. playlistdebug=1
  94. mp3encdebug=1
  95. mp3decdebug=1
  96. resamplerdebug=1
  97. rgcalcdebug=1
  98. apidebug=1
  99. calendardebug=1
  100. capturedebug=1
  101. djdebug=1
  102. flashpolicyserverdebug=1
  103. fileconverterdebug=1
  104. sourcerelaydebug=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement