![]() |
It allows you to broadcast music or any audio file from your own PC, then its transmited via the server and via your forum for members to listen to.
Laters Quote:
|
Now another question:
Is the below details: $song[t] = Song History:t can range from 0-19. EX: $song[0], $song[1], $song[2] .... $song[19] ----- $song[0] (zerro) is the current song playing. Is this in the template or file? If I change the template +$song[0] as below to +$song[19] it does not show the last 19 songs played? <td width="50%" style="padding-left: 5px" class="smallfont"><tt><marquee width="98%" scrolldelay="100" scrollamount="5">+ $song[0]</marquee></tt></td> </tr> Any ideas? Laters |
Quote:
$song[1] - song that played before $song[0] $song[2] - song that played before $song[1] $song[3] - song that played before $song[2] $song[4] - song that played before $song[3] and soforth to $song[19] https://vborg.vbsupport.ru/external/...chmentid=33910 all of these are in the current Hack - If installed and "on the Air" hit the collapse / expand Image. I added the " + " (plus sign) as a place holder, it is not needed If you want a many songs to list in the "marquee ", try: List current and last 4 songs (total 5 songs) Code:
<td width="50%" style="padding-left: 5px" class="smallfont"><tt><marquee width="98%" scrolldelay="100" scrollamount="5">+ $song[0] + $song[1] + $song[2] + $song[3] + $song[4] + $song[5]</marquee></tt></td> |
Thanks M8, testing now.
regards, Brian Quote:
|
I need help, i added all the information in the plug in, but it still says that my server isnt up, and it is. I cant enable it, im uh, lost :) thanks
|
// Shoutcast Server Stats
$scdef = "UGM Shoutcast"; $scip = "68.59.104.15"; $scport = "8000"; $scpass = "password"; $ircsite = "irc.server.net"; //End configuration thats my code... whats wrong |
all looks correct :)
I have had another person have problems and here is what they did.... Isn't it a bummer when you find you cant use a good script cause your hosting provider is blocking outgoing an all non descript ports and your website is not on the same server as something like a shoutcast stream. Dont let that stop you if an xml file is behind a port that you cant access from your site try something like this mod I did for this shoutcast hack Extra requirements: LyNX browser on your shoutcast server - this is a command line browser, if your on a shoutcast shell you would normally find it allready is installed If you have your own dedicated server for streaming its not hard to install if it isnt allready there usage here lynx = starts the browser -auth= to get into protected directories/files -source will drop the content source to stdout 1> filename will trap the stdout to a file lynx then just drops straigh back to command line ready for the next command as you added the switches for its job eg: Code:
lynx -auth=admin:dNASpasshere -source http://dNAS-IP-Or-Domain:port/admin.cgi?mode=viewxml 1> /webserver/path/public_html/filename.xml How to install so you can grab your shoutcast status from a permitted port 80: You will need the files from the hack and a simple edit. Find: PHP Code:
PHP Code:
do the template bits and upload the images and index.php file as directed in the hack run your lynx command in shell and then check out your Shoutcast module page if it worked great you may want to try it a few times before you add your crontab entry. Adding crontab from shell is easy, you will more than likely enter the vi editor after issuing the command crontab -e you might want to do crontab -l first and copy that text safe, so you can easily restore the original cron entries if you mess up. move your cursor to the line above where you would like your new cron line, hit o now your in insert mode copy to your clip board your prepared cron line, to run this every 5 minutes would look something like: Code:
*/5 * * * * lynx -auth=admin:dNASpasshere -source http://dNAS-IP-Or-Domain:port/admin.cgi?mode=viewxml 1> /webserver/path/public_html/filename.xml hit the esc key now input :x and hit enter to install your new crontab enjoy :) |
i dont really understand that :x
|
Quote:
Rem to edit your plugin to the new port also. |
ahh yes, that worked <333 Thanks man!
|
ok now under the current song it doesnt show a song..hm
|
Quote:
The ID3v1 tag is on each Mp3. You can access it getting the "options" of a song in your Winamp Playlist. I USE: Quote:
What is ID3 (v1)? The audio format MPEG layer I, layer II and layer III (MP3) has no native way of saving information about the contents, except for some simple yes/no parameters like "private", "copyrighted" and "original home" (meaning this is the original file and not a copy). A solution to this problem was introduced with the program "Studio3" by Eric Kemp alias NamkraD in 1996. By adding a small chunk of extra data in the end of the file one could get the MP3 file to carry information about the audio and not just the audio itself. The placement of the tag, as the data was called, was probably chosen as there were little chance that it should disturb decoders. In order to make it easy to detect a fixed size of 128 bytes was chosen. The tag has the following layout (as hinted by the scheme to the right): Song title: 30 characters Artist: 30 characters Album: 30 characters Year: 4 characters Comment: 30 characters Genre: 1 byte If you one sum the the size of all these fields we see that 30+30+30+4+30+1 equals 125 bytes and not 128 bytes. The missing three bytes can be found at the very beginning of the tag, before the song title. These three bytes are always "TAG" and is the identification that this is indeed a ID3 tag. The easiest way to find a ID3v1/1.1 tag is to look for the word "TAG" 128 bytes from the end of a file. As all artists doesn't have a 30 character name it is said that if there is some bytes left after the information is entered in the field, those bytes should be fille with the binary value 0. You might also think that you cannot write that much in the genre field, being one byte big, but it is more clever than that. The byte value you enter in the genre field corresponds to a value in a predefined list. The list that Eric Kemp created had 80 entries, ranging from 0 to 79. What is ID3v1.1? ID3v1 may well be easy to implement for programmers, but it sure is frustrating for those with their own, creative ideas. Since the ID3v1 tag had a fixed size and no space marked "Reserved for future use", there isn't really room for that much improvement, if you want to maintain compatibility with existing software. One who found a way out was Michael Mutschler who made a quite clever improvement on ID3v1. Since all non-filled fields must be padded with zeroed bytes its a good assumption that all ID3v1 readers will stop reading the field when they encounter a zeroed byte. If the second last byte of a field is zeroed and the last one isn't we have an extra byte to fill with information. As the comments field is to short to write anything useful in the ID3v1.1 standard declares that this field should be 28 characters, that the next byte always should be zero and that the last byte before the genre byte should contain which track on the CD this music comes from. |
man u always lose me.
|
Quote:
Another note: ID3v2 tag can be filled out, but if it is blank of data and is enabled to send data then the feed will also show a "dash" w/o file info. If that is ok. Then Are you useing winamp to cast ? Make sure the Auto has the checks marks and [x] enable title updates https://vborg.vbsupport.ru/external/...chmentid=26525 |
My mp3s have id3 tags and it still doesnt show...?
|
ok got it man got it thanks
|
Installed on vb 3.5.0 works like a charm, thanks for the hack :)
|
Quote:
|
it's awesome 。。。just wonder whether there is a lite version of this hack ? 。。。have no idea how to set the config and how to get the password :(
|
Yea, I liked the Lite version too, is there going to be one for 3.5? if not, I can go the Full route if needed.. Thanks
|
Yes a light ver is soon. Perhaps tonight.
|
that's all I needed to know... Will be awaiting it. Thx!
|
Quote:
:D |
wow, i love this hack. I wonder if there is any possible way to have users vote what song will play next from the playlist. Or maybe give the users a choice of three songs and they vote for the next song from those choices. That would be awesome!
Still an awesome hack. |
Quote:
1 place ( there are many out there) http://www.spacialaudio.com/products/index.html I think I seen a few "less toy" free / low cost ver. out there on the net over the years. I still use winamp 2.91 ;D |
has any one used stream cast with this hack
|
Quote:
|
<a href="http://www.steamcast.com/" target="_blank">http://www.steamcast.com/</a> its like shoutcast Just plays aol meda player as well I tryed it and it will not connect to the page
|
Quote:
|
Quote:
https://vborg.vbsupport.ru/showthread.php?t=98538 |
Quote:
|
It says the server is down but I know that I entered all the info in correctly and it is up...
|
Quote:
Admincp => Plugin Manager => Hook Location : forumhome_complete => Shoutcast Status Full - Main => EDIT - Change values with in the "quotes" to your shoutcast server settings. //Configuration $scdef = "Server Name"; $scip = "xxx.xxx.xxx.xxx"; $scport = "8000"; $scpass = "changeme"; // admin password to (not DJ) shoutcast server $ircsite = "irc.server.com"; //End configuration Make sure there are no spaces "xxx.xxx.xxx.xxx ", "password " If there is a space inside the quotes it will not work. |
Zachariah ,waitng for the multistream version please :)
|
// Shoutcast Server Stats
$scdef = "UberGamers Radio"; $scip = "butter.sytes.net"; $scport = "8001"; $scpass = "xxxxx"; $ircsite = "irc.vbulletin-fans.com"; //End configuration Still doesn't work. |
Quote:
If you edit your sc_serv.ini file of your shoutcast server config file. Quote:
|
yes, my portbase is 8001, so I have 8001 and 8002 open in my router. A reak IP doesnt work either...funny because this used to work before, I was using the first release (see my post on page number 1), but then we stopped broadcasting. We started again last night, upgraded, and now it doesn't work...
By the way, the D.J is not hosting the server if that makes a difference. |
// Shoutcast Server Stats
$scdef = "idoRadio"; $scip = "62.193.243.147"; $scport = "6060"; $scpass = "x"; $ircsite = ""; //End configuration i have done it like that but my radio seems offline what is wrong? |
Great add. Can you please make it so that nothing of the offline info (buttons etc.) is visible when shoutcast is offline?
|
Quote:
forumhome_shoutcast_off remove all content save Don't remove the template just "empty" it. |
All times are GMT. The time now is 04:22 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|