Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. ; Sample sc_trans/0.35-j config file
  2. ; j.frankel 12/05/00
  3. ; t.pepper 10/31/00
  4. ; (relays not supported, yo)
  5. ;
  6. ; sc_trans operates in one of two modes, either reading mp3s off disk, decoding,
  7. ; re-encoding, and then broadcasting them, or relaying from a shoutcast server,
  8. ; transcoding to a lower bitrate, and broadcasting to a new server.
  9.  
  10. ; sc_trans accepts the following signals:
  11. ; HUP - flush logfiles (close and reopen) -- will make console logging stop
  12. ; WINCH - jump to next song
  13. ; USR1 - reload playlist off disk (will not interrupt current playing stream)
  14. ; USR2 - toggle shuffle on/off
  15. ; TERM - normal sc_trans shutdown (clean)
  16.  
  17. ; PlaylistFile (required EVEN IF RELAYING) - playlist file (to create, use
  18. ; find /path/to/mp3/directory -type f -name "*.mp3" > playlist_filename.lst
  19. PlaylistFile=musica.lst
  20.  
  21. ; ServerIP/ServerPort are the target server to send to
  22. ServerIP=ACA LA IP DE TU VPS
  23. ServerPort=8000
  24.  
  25. ; Password is the password on the sc_serv you're sending to.
  26. Password=ACA LA CONTRASEÑA QUE PUSISTES EN SHOUTCAST
  27.  
  28. ; StreamTitle/URL/Genre define the data that appears on the directory and in the
  29. ; stream info.
  30. StreamTitle=Auto DJ
  31. StreamURL=
  32. Genre=Variados
  33.  
  34. ; Logfile optionally denotes a text file to log sc_trans to. a kill -HUP
  35. ; will force a close and re-open of this file (but will also cease logging to
  36. ; the console)
  37. LogFile=sc_trans.log
  38.  
  39. ; Shuffle the playlist
  40. Shuffle=1
  41.  
  42. ; Bitrate/SampleRate/Channels recommended values:
  43. ; 8kbps 8000/11025/1
  44. ; 16kbps 16000/11025/1
  45. ; 24kbps 24000/22050/1
  46. ; 32kbps 32000/22050/1
  47. ; 64kbps mono 64000/44100/1
  48. ; 64kbps stereo 64000/22050/2
  49. ; 96kbps stereo 96000/44100/2
  50. ; 128kbps stere0 128000/44100/2
  51. Bitrate=128000
  52. SampleRate=44100
  53. Channels=2
  54. ; Quality is from 1-10. 1 is best, 10 is fastest.
  55. Quality=1
  56.  
  57.  
  58. ; Mode=0 for none, 1 for 100/100->100/0, 2 for 0/100->100/0
  59. CrossfadeMode=1
  60. ; Length is ms.
  61. CrossfadeLength=8000
  62.  
  63. UseID3=0
  64.  
  65. ; Public determines whether or not this station will show up in the directory
  66. Public=1
  67.  
  68. ; Put stuff here for user interaction (AOL IM, ICQ, IRC)
  69. AIM=
  70. ICQ=
  71. IRC=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement