Advertisement
Guest User

IndexError: tuple index out of range

a guest
May 5th, 2015
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.01 KB | None | 0 0
  1. <deefuzzer>
  2. <log>/home/pi/deefuzzer/station.log</log>
  3. <m3u>/home/pi/deefuzzer/m3u.m3u</m3u>
  4. <ignoreerrors>0</ignoreerrors>
  5. <maxretry>0</maxretry>
  6. <stationdefaults>
  7. <!-- This tag allows a common default configuration to be set for all stations. This
  8. is useful when defining many stations that will share many common configuration
  9. settings. If a setting is specified here and in a station tag, the station tag
  10. will override this one. Available options are the same as the station tag. -->
  11. <control>
  12. <mode>0</mode>
  13. <port>16001</port>
  14. </control>
  15. <jingles>
  16. <dir>/home/pi/deefuzzer/jingles</dir>
  17. <!-- If '1', some media will be played between each main track of the playlist. '0' does nothing. -->
  18. <mode>0</mode>
  19. <!-- If '1', the jingle playlist will be randomized. '0' for alphanumeric order -->
  20. <shuffle>1</shuffle>
  21. </jingles>
  22. </stationdefaults>
  23. <station>
  24. <control>
  25. <mode>0</mode>
  26. <port>16001</port>
  27. </control>
  28. <infos>
  29. <description>KJRadio, somos musica, somos tu musica!</description>
  30. <name>KJRadio</name>
  31. <short_name>kjradio.mp3</short_name>
  32. <!-- The website of the station (for metadata) -->
  33. <url>http://kjradionet.tk</url>
  34. <!-- The genres of the audio streams -->
  35. <genre>Various</genre>
  36. </infos>
  37. <jingles>
  38. <dir>/home/pi/deefuzzer/jingles</dir>
  39. <!-- If '1', some media will be played between each main track of the playlist. '0' does nothing. -->
  40. <mode>1</mode>
  41. <!-- If '1', the jingle playlist will be randomized. '0' for alphanumeric order -->
  42. <shuffle>1</shuffle>
  43. </jingles>
  44. <media>
  45. <bitrate>96</bitrate>
  46. <source>/home/pi/deefuzzer/musica</source>
  47. <!-- The audio format of the media. Can be 'mp3' or 'ogg' -->
  48. <format>mp3</format>
  49. <ogg_quality>4</ogg_quality>
  50. <samplerate>22050</samplerate>
  51. <!-- If '1', the playlist will be randomized. '0' for alphanumeric order -->
  52. <shuffle>1</shuffle>
  53. <!-- The number of channels - or voices - of the media. '1' for mono, '2' for stereo. -->
  54. <voices>1</voices>
  55. </media>
  56. <record>
  57. <!-- The directory where files will be recorded -->
  58. <dir>/path/to/archives</dir>
  59. <!-- If '1', the stream will be recorded, '0' does nothing -->
  60. <mode>0</mode>
  61. </record>
  62. <relay>
  63. <!-- The default author of the relay streams -->
  64. <author>Unknown</author>
  65. <!-- If '1', the station will relay another _existing_ stream.
  66. Wonderful for commuting to live sessions. '0' does nothing -->
  67. <mode>0</mode>
  68. <!-- The URL of the station to relay -->
  69. <url>http://127.0.0.1:8000/telecaster_live.mp3</url>
  70. </relay>
  71. <feeds>
  72. <!-- If '1', the feeds will output, '0' will do nothing. Default: '1' -->
  73. <mode>0</mode>
  74. <!-- If '1', the feeds will output in RSS format, '0' will not. Default: '1' -->
  75. <rss>1</rss>
  76. <!-- If '1', the feeds will output in JSON format, '0' will not. Default: '0' -->
  77. <json>0</json>
  78. <!-- If '1', the feeds will output a 'playlist' feed, '0' will not. Default: '1' -->
  79. <playlist>0</playlist>
  80. <!-- REQUIRED: A path to the directory containing RSS (XML) files that is 'currently playing'
  81. and 'playlist' feeds (need write access rights to the directory).
  82. The file is preferably accessible behind an url,
  83. for example, http://mydomain.com/rss/mystation.xml -->
  84. <dir>/path/to/rss/</dir>
  85. <!-- REQUIRED: If '1', the RSS feeds will contain an enclosure to become a podcast feed.
  86. '0' for simple RSS feed without enclosure -->
  87. <enclosure>1</enclosure>
  88. <!-- the base URL of all media items.
  89. Default is station url /media -->
  90. <media_url>http://localhost/media/</media_url>
  91. <!-- Include the full name of the file in the feed -->
  92. <showfilename>1</showfilename>
  93. <!-- Include the full server path of the file in the feed -->
  94. <showfilepath>0</showfilepath>
  95. </feeds>
  96. <server>
  97. <!-- The host to send the stream (domain or IP) -->
  98. <host>giss.tv</host>
  99. <!-- The mountpoint stream -->
  100. <mountpoint>kjradio</mountpoint>
  101. <!-- The port of the Icecast2 server on the host -->
  102. <port>8000</port>
  103. <!-- If '1', the mount point will be publish on yp.icecast.org, '0' for private streams -->
  104. <public>0</public>
  105. <!-- The source password of the Icecast2 server on the host -->
  106. <sourcepassword>contraa</sourcepassword>
  107. <!-- The type of the server (icecast or stream-m) -->
  108. <type>icecast</type>
  109. <!-- If '1', the media format will be appended to the mount name (ie, /mount.mp3 instead of /mount).
  110. '0' will leave the mount name alone. Default is 0. Used only for icecast streams -->
  111. <appendtype>1</appendtype>
  112. </server>
  113. <twitter>
  114. <!-- Your twitter username -->
  115. <key>your access token key</key>
  116. <!-- If '1', deefuzzer will tweet #nowplaying, new tracks and other things to Twitter. 'O' does nothing. -->
  117. <mode>0</mode>
  118. <!-- Your twitter password -->
  119. <secret>your access token secret key</secret>
  120. <!-- These tags will be added to each twitter message -->
  121. <tags>parisson deefuzzer</tags>
  122. </twitter>
  123. </station>
  124. </deefuzzer>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement