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
  #352  
Old 09-04-2005, 09:00 AM
evesve evesve is offline
 
Join Date: Jul 2005
Location: Sweden
Posts: 143
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I would like to order the channel by "desc" , not "asc".
Where can I do that?

=================================
I found it myself:
vBRadio.php line 100
Quote:
$Get_All = $DB->query("select * from ".TABLE_PREFIX."radio order by r_name DESC");
Reply With Quote
  #353  
Old 09-15-2005, 07:34 PM
Inferno Dragon's Avatar
Inferno Dragon Inferno Dragon is offline
 
Join Date: Sep 2005
Location: United Kingdom
Posts: 153
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hye nice hack man, I will install this one too
Reply With Quote
  #354  
Old 09-16-2005, 06:09 PM
Just Jim Just Jim is offline
 
Join Date: Dec 2003
Posts: 4
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The stations I get say class not registered when I try to add them. Any idea why? :disappointed:
Thanks
Reply With Quote
  #355  
Old 09-18-2005, 05:37 PM
Inferno Dragon's Avatar
Inferno Dragon Inferno Dragon is offline
 
Join Date: Sep 2005
Location: United Kingdom
Posts: 153
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

can I include only a small player on from home (at top) which will play play the station automatically? and can I give a dropdown box + start stop button under that small player on from home?
Reply With Quote
  #356  
Old 09-18-2005, 07:21 PM
Inferno Dragon's Avatar
Inferno Dragon Inferno Dragon is offline
 
Join Date: Sep 2005
Location: United Kingdom
Posts: 153
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

and opps I forget one more thing, how I can disable the radio for guests? I want it so only members can use it!
Reply With Quote
  #357  
Old 09-22-2005, 10:34 AM
Armin Armin is offline
 
Join Date: Apr 2004
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello guys ...

There are a lot of good streams that use "WinAmp" or "Real-Media" .... any way we can include those tools into out vBRadio ? Because i can only play those .asx files that use Windows Media Player.

I prefer a fixx, that allows Users to choose the tool ... or something that play them all or that choose the right tool for the right stream .. ya know ?


Would be great if this get fixxed ... the hack roxx azz. Good job

Ps.: When i try to play such a stream .. that use WinAmp or other tool, my Firefox crashes.
Reply With Quote
  #358  
Old 09-22-2005, 01:40 PM
Detomah's Avatar
Detomah Detomah is offline
 
Join Date: Sep 2003
Location: South Shields UK
Posts: 217
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm trying to work a little addon for vbradio for my site, that allows me to have a normal written text list that I can click on a channel and it will pop up in it's own window...

I can't for the life of me figure out what perameters I need to use for the url though.

e.g. something like http://my-domain.com/forum/vbradio.p...=mychannel.asx

Does anyone know what the bits after the vbradio.php would be?
Reply With Quote
  #359  
Old 09-24-2005, 12:48 PM
evesve evesve is offline
 
Join Date: Jul 2005
Location: Sweden
Posts: 143
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Inferno Dragon
and opps I forget one more thing, how I can disable the radio for guests? I want it so only members can use it!
I did this.
Code:
  <fieldset class="fieldset">
<legend>Tillg?ngliga Stationer/Telefonkonferanser</legend>
<center>
<if condition="in_array($bbuserinfo[usergroupid], array(6,7,9))"> {$Station_Select}<br /><br />
<input type='button' value='Spela' class='button' onclick='initiateStation()' />
</if>
<if condition="in_array($bbuserinfo[usergroupid], array(1,2,3,4,5,8))"> ==MEMBERS ONLY==
</if>
</center>
</fieldset>
Reply With Quote
  #360  
Old 09-24-2005, 05:52 PM
Armin Armin is offline
 
Join Date: Apr 2004
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello guys ... i have read the explanations about the Firefox fixxes. Well it dont work here.

Nearly all hacks work for Firefox, why not thisone ? There must be a easy solution to fixx this.
Can you make a vBRadio 1.1 that works for Firefox, too since Firefox is a well spreaded Browser now a days mate.
Or just an AddOn or simple fixx for Firefox.

Please !

Regards,
Armin
Reply With Quote
  #361  
Old 09-24-2005, 10:34 PM
evesve evesve is offline
 
Join Date: Jul 2005
Location: Sweden
Posts: 143
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Armin
Hello guys ... i have read the explanations about the Firefox fixxes. Well it dont work here.

Nearly all hacks work for Firefox, why not thisone ? There must be a easy solution to fixx this.
Can you make a vBRadio 1.1 that works for Firefox, too since Firefox is a well spreaded Browser now a days mate.
Or just an AddOn or simple fixx for Firefox.

Please !

Regards,
Armin
No problem with Firefox and vBRadio.
You need to download the plugin FoxyTunes.

https://addons.mozilla.org/extension...nfo.php?id=219
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 02:03 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.15156 seconds
  • Memory Usage 2,304KB
  • 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_code
  • (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
  • (1)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