Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBRadio v1.0 Details »»
vBRadio v1.0
Version: 1.00, by Zero Tolerance Zero Tolerance is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.0.3 Rating:
Released: 11-26-2004 Last Update: 11-27-2004 Installs: 286
DB Changes
 
No support by the author.

Yay, a radio system, an idea which i thought of in my sleep believe it or not .. maybe i work too hard.

Anyway this is a simple yet effective addition to your forum, and takes no time to install what so ever.

Features
  • ACP Features
    • vBRadio Channel Control
      • Add a new channel/radio station (Input: name, station stream url, for which cat)
      • Edit Existing Channels
      • Delete Exisiting Channels
    • vBRadio Category Control
      • Add a new category (Input: name)
      • Edit existing categories
      • Delete existing categories
        • Deletion Parameters
        • Choose to delete all channels within this category
        • Choose to move all channels within this category to another
  • Forum Interface Features
    • Radio pop's up in a window to keep while the user continues to browse
    • Drop down menu to select which station the user wishes to listen too
    • Player Controls
      • Volume Control
      • Play
      • Stop
      • Mute
      • Media Player Controls On/Off
  • Misc.
    • Only uses 1 SQL Query!

Included Within Download
  • Installation Instructions
  • Automatic DB/Template/Phrase Installer
  • A few pre-installed stations

Anyone having difficulties with listening to any of the stations please be patient. Also make sure that you have windows media player and in some cases real player installed.

Any questions/suggestions please post below, i have also put some previews up. Enjoy

- Zero Tolerance

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #282  
Old 03-05-2005, 11:33 PM
Joe Pimms Joe Pimms is offline
 
Join Date: Jan 2005
Location: Canada
Posts: 95
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

where can i find a site to have dance or house music on my site ?
Reply With Quote
  #283  
Old 03-05-2005, 11:34 PM
Zero Tolerance's Avatar
Zero Tolerance Zero Tolerance is offline
 
Join Date: Feb 2004
Location: England
Posts: 813
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You'll have to search the internet to find radio streams i'm afraid, i don't provide them, some users have posted links to numerous stations within the thread itself, just browse through it

- Zero Tolerance
Reply With Quote
  #284  
Old 03-05-2005, 11:36 PM
Mechanical Mind's Avatar
Mechanical Mind Mechanical Mind is offline
 
Join Date: Sep 2004
Location: USA
Posts: 107
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zero Tolerance
Alright then you probably have javascript disabled .. possibly, or something else. But seen as how the pop up works, and vBChat does for you, javascript is enabled, my only other assumption is the multimedia options in IE.

If your using IE, go to Tools -> Internet Options, go to the Tab Advanced, scroll down and find "Multimedia", ensure all box's are ticked.

- Zero Tolerance
OK.

Went into: Tools > Internet Options > Advanced > Multimedia...

All options were "ticked" except for one "Show Image Download Placeholders". I ticked this option and saved.

Then I repeated the steps listed in my last post, but still no difference. (I don't want to hijack this thread. But this is really confusing.)
Reply With Quote
  #285  
Old 03-05-2005, 11:41 PM
Zero Tolerance's Avatar
Zero Tolerance Zero Tolerance is offline
 
Join Date: Feb 2004
Location: England
Posts: 813
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm, then i really am clueless as to why it isn't working for you, js is turned on, multimedia is, your using IE and it works for me/your members.

I'll look into it further, i'll contact you on MSN in an hour or so with any info i can find out, sorry for the wait.

- Zero Tolerance
Reply With Quote
  #286  
Old 03-05-2005, 11:44 PM
Mechanical Mind's Avatar
Mechanical Mind Mechanical Mind is offline
 
Join Date: Sep 2004
Location: USA
Posts: 107
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zero Tolerance
Hmm, then i really am clueless as to why it isn't working for you, js is turned on, multimedia is, your using IE and it works for me/your members.

I'll look into it further, i'll contact you on MSN in an hour or so with any info i can find out, sorry for the wait.

- Zero Tolerance
heck, np, i'm surely not gonna complain about free software and support. :nervous:

once it gets up and running (for me ) i'll make sure to donate a few bucks to the ZT fund.
Reply With Quote
  #287  
Old 03-06-2005, 05:42 AM
Joe Pimms Joe Pimms is offline
 
Join Date: Jan 2005
Location: Canada
Posts: 95
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hey i was messing around with this hack and i was thinking of maybe why not put this hack on the forumhome template so i did that :

PHP Code:
in FORUMHOME look for:

<if 
condition="$show['birthdays']">
<!-- 
today's birthdays -->

put under:

<!-- Begin vbRadio -->
<script language="JavaScript">
<!--

function changeMute(){
Player.settings.mute = '
true';
mute.innerHTML='
<a href="#" onClick="changeMute2();">Mute*</a>';
}

function changeMute2(){
Player.settings.mute = '
false';
mute.innerHTML='
<a href="#" onClick="changeMute();">Mute</a>';
}

function initiateStation(){
toPlay = document.getElementById('
thisStation')
toPlay = toPlay.options[toPlay.options.selectedIndex].value

    newRadio = "";
    newRadio += "<OBJECT ID='
Player' height='250' width='300' CLASSID='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6'>"
    newRadio += "<PARAM name='
URL' value='" + toPlay + "' id='insert_1'>"
    newRadio += "<PARAM name='
uiMode' value='none'>"
    newRadio += "<PARAM name='
mute' value='false'>"
    newRadio += "<PARAM name='
ShowControls' value='0'>"
    newRadio += "<PARAM name='
ShowStatusBar' value='0'>"
    newRadio += "<PARAM name='
ShowDisplay' value='0'>"
    newRadio += "<EMBED type='
application/x-mplayer2' "
    newRadio += "pluginspage = '
http://www.microsoft.com/Windows/MediaPlayer/' "
    
newRadio += "SRC='" toPlay "' "
    
newRadio += "name='Player' "
    
newRadio += "width='300' "
    
newRadio += "height='250' "
    
newRadio += "AutoStart='true' "
    
newRadio += "showcontrols='0' "
    
newRadio += "showstatusbar='0' "
    
newRadio += "showdisplay='0' "
    
newRadio += "id='insert_2'>"
    
newRadio += "</EMBED>"
    
newRadio += "</OBJECT>"

    
document.getElementById('radio').innerHTML newRadio

}

-->
</
script>


<
tbody>
<
table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<
thead>
    <
tr>
        <
td class="tcat" colspan="2">
            <
a style="float:right" href="#top" onclick="return toggle_collapse('forumhome_radio')"><img id="collapseimg_forumhome_radio" src="$stylevar[imgdir_button]/collapse_tcat.gif" alt="" border="0" /></a>
            <
div align='center'>vBRadio</div></td>
    </
tr>

<
tbody id="collapseobj_forumhome_radio" style="{$vbcollapse['collapseobj_forumhome_radio']}">
    <
tr>
        <
td class="thead" width="50%" align="center">Stations/Control</td>
            </
tr>

<
tr>
<
td class='alt2' valign='top'>

    <
fieldset class="fieldset">
    <
legend>Available Stations</legend>
    <
center>
    {
$Station_Select}<br /><br />
    <
input type='button' value='Play This Station' class='button' onclick='initiateStation()' />
    </
center>
    </
fieldset>

    <
br/>

    <
fieldset class="fieldset">
    <
legend>Player Controls</legend>
    <
center>
    [<
font id='mute'><a href='#' onClick='changeMute();'>Mute</a></font>]
    [<
a href='#' onClick='javascript:Player.controls.play();'>Play</a>]
    [<
a href='#' onClick='javascript:Player.controls.stop();'>Stop</a>]
    [
Controls: <a href='#' onClick='javascript:Player.uiMode = "mini";'>On</a> |
           <
a href='#' onClick='javascript:Player.uiMode = "none";'>Off</a>]
    <
br />
    [
Volume:
    <
a href='#' onClick='javascript:Player.settings.volume= 0;'>0</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 10;'>1</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 20;'>2</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 30;'>3</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 40;'>4</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 50;'>5</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 60;'>6</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 70;'>7</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 80;'>8</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 90;'>9</a>
    <
a href='#' onClick='javascript:Player.settings.volume= 100;'>10</a>]
    </
center>
    </
fieldset>

</
td>

<</
td>

</
tr>
</
tbody>

<!-- /
End vbRadio --> 
ok so heres the problem it will not work im i missing some thing on this ?

oh yes as you can see i removed the object as well...

im i to put some thing in the phpinclude_start template ?

please help
Reply With Quote
  #288  
Old 03-06-2005, 01:12 PM
Mechanical Mind's Avatar
Mechanical Mind Mechanical Mind is offline
 
Join Date: Sep 2004
Location: USA
Posts: 107
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by OrangeFlea
Some of the users cannot hear anything. They've waited 30 seconds after clicking "Play this station"; they have IE, Windows Media Player and Real Player.....what could be the problem?
MegaDittos!

SUMMARY:

1. Installed hack flawlessly as per instructions.
2. Click on "Radio" link in Navbar.
3. vBRadio pop-up appears.
4. Select station.
5. Click "Play This Station".
6. Nothing happens.........

WHAT I KNOW:

1. The hack is installed properly. (It is working perfectly for some users)
2. It is not a firewall issue. (I tried with my firewall disabled, and it still doesn't work)
3. I have JavaScript enabled. (So that's not the problem)
4. I have the latest Windows Media Player 10 (So that's not the problem)
5. I have all choices ticked in TOOLS > INTERNET OPTIONS > ADVANCED > MULTIMEDIA OPTIONS... (So that's not the problem)
6. When I visit the station URLs manually, I click on them and instantly Media Player opens and starts playing the station. (So that's not the problem)

MY PC:

1. Broadband, hi-speed cable connection
2. Windows XP, with updates and service pack installed
3. Pentium 4
4. Internet Explorer 6
5. Fast as hell, with hyperthreading. Not sure on the specs.
6. Virus Protection: Norton Internet Security Professional 2004 (with antivirus, firewall, etc)
7. SpyWare Protection: SpyWare Sweeper

The other user on my site who has complained of the exact same situation that I have, also uses IE 6.

Sorry ZT. It worked just that one time last night. But that was because I visited the URL. It actually, is still not working. I just wanted to summarize this so maybe it can be productive to others if they are having a problem too.

What other options are we left with as to why this isnt' working?

It would appear that this hack simply works for some people and not for others... (nice hack, but consider yourself warned if you are thinking of installing)
Reply With Quote
  #289  
Old 03-06-2005, 01:21 PM
jzewatsky jzewatsky is offline
 
Join Date: Nov 2004
Posts: 51
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Not to be a pest Zero.... Is it possible to add usergroup permissions to the radio?
Reply With Quote
  #290  
Old 03-12-2005, 03:01 AM
axi axi is offline
 
Join Date: Jan 2005
Posts: 231
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This hack is awesome., using it and it rocks!

One question - Does someone know how to disable the right clicking on the 'Media Player' section onthe vBRadio? Can anyone help me with this please!! Could we write this additional hack for this please??

I'd really appreciate it
Reply With Quote
  #291  
Old 03-15-2005, 05:27 AM
sim tech sim tech is offline
 
Join Date: Jan 2005
Location: Georgia
Posts: 140
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Some of the best links for grabbing both RealAudio & Windows media Feeds:

http://www.crhear.com/webcast.phtml

I found about 40 great ones for my site here.... both audio and video feeds.

Other sites http://www.radio-locator.com/

UKradio stations

On this site, look for the drop down screen on the left...
http://www.europeanirish.com/Radio/
Reply With Quote
Reply


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

Forum Jump


All times are GMT. The time now is 12:51 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
  • Page Generation 0.05212 seconds
  • Memory Usage 2,361KB
  • Queries Executed 27 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete