Free file hosting, free video sharing

<<< The Web Hosting >>>


Go Back   Noeman GSM > Webhosting & Website development > Web Hosting Forums

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-15-2006, 05:52 PM
Spiral's Avatar
CO-Admin
 
Join Date: Sep 2004
Location: Martil
Age: 25
Posts: 16,419
Reputation: 25013
Spiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super Member
Default How to Run a Broadcasting Station using Shoutcast on Linux

This how-to will not replicate TLG's How-To on installing a Shoutcast Server. Rather this focuses on those who do not wish to broadcast from a remote location and would rather have the server play Mp3 located on the same server based on a playlist.

Please make sure you go through the above thread first do that first before you continue with this section. I will assume you have created a user just for running shoutcast (and isn't doing it from root) and you are currently running as that user. I will also assume you have already configured your shoutcast server (with passwords and so on).


Follow the steps:


1. Download: [Only Registered users can see links . Click Here To Register...]


2. Untar

tar -zvxf sc_trans_posix_040.tgz


3. Configure

cd sc_trans_posix_040

pico sc_trans.conf


Make sure that the config file points to the Playlist file you are going to generate in step 4. You need to configure these configuration variables:

- PlayListfile

- ServerIP: This is the IP of your Shoutcast server which is probably the same server.

- ServerPort: Port 8000 is default

- Password: This is the password that you enter in the Shoutcast server configuration

- Bitrate: Depending on your radio, you can tweak the bitrate here

- The rest are fine default.

4. Create a playlist based on mp3s on the server:

find /path/to/mp3/directory -type f -name "*.mp3" > playlist.lst



5. Start your Shoutcast server

cd /path/to/shoutcast/server/

nohup ./sc_serv &



nohup and & is not compulsory but is nice to have. Nohup outputs to a log file and & runs the process in the background and returns you to shell.





6. Start your broadcast

cd /path/to/broadcast/server/

nohup ./sc_trans_linux &





It should now be playing. Access your server by going to [Only Registered users can see links . Click Here To Register...] or if there's an URL on that IP, you can use the URL as well.



If there's any questions, feel free to ask.
Reply With Quote
Sponsored Links
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 06:58 PM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
Copyright © 2004-2008 Noeman . All rights reserved
Mobile Phones | Pay Day Loans | Debt | Home Loan | Send Money Online

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112