| Help
How
do I install iRadeo?
Please follow these simple steps to install iRadeo on your web
site:
Step 1:
Unzip iRadeo file package and edit config.php file using any
text editor.
- You may edit all sections highlighted in red.
<?php
/*
(c) iRadeo.com
*/
/*
Your Player Title
*/
$title = 'Player Title';
/*
Label
Display Feature
Display labels inside player.
Set
any label to '' to hide it.
*/
$labels
= array(
'song' => 'Song',
'artist' => 'Artist',
'album' => 'Album'
);
/*
Root directory
to your mp3 folder.(eg: /root/mp3s/)
Directory
where your audio files are stored.
If you need assistance, request this
information from your web hosting provider.
*/
$mp3_dir = '/root-directory-for-your-webserver/mp3/';
/*
Public address for your audio folder.
If
you need assistance, request this information from
your web hosting provider.
*/
$http_path = 'http://www.yourdomain.com/iRadeo/mp3/';
/*
Shuffle Mode Feature
Enabled - Streams files randomly from specified
directory.
Disabled - Sorts files alphabetically
by filename/pathname and play sequentially.
Enter true to enable or false to disable
feature.
*/
$shuffle = true;
/*
Skip
Feature
Limits the number of skips before having
to stream one whole audio file.
Unlimited skips: -1
No skipping:
0
X Skips (then must listen to entire audio):
1+
*/
$skip_limit = 5;
/*
File
Type Supported
DO
NOT EDIT
Only .wav
and .mp3 will work.
*/
$playable = array('mp3', 'wav');
/*
Auto Play Feature
Enabled - Streams files automatically
when web page loads.
Disabled - Requires users to click on play
button to start streaming.
Enter
true to enable or false to disable feature.
*/
$auto_play = true;
?>
|
Step 2:
Upload all files and folders to your
web server.
Step 3:
Start uploading your audio files (MP3 / WAV formats) to your
specified folder.
Note:
Before you upload your MP3 / WAV files, make
sure the file names don't contain any brackets, ampersands,
and/or
other non-alphanumeric
characters. Dashes (-) and/or underscores (_) are okay.
Step
4:
Edit, copy, and paste the following code in any section of your web site to start
streaming
your audio files to your public.
- You may edit all sections highlighted in red.
- Copy and Paste code between <body>below code
goes here</body>
<script
type="text/javascript" charset="utf-8">
playerWidth
= 451;
playerHeight = 300;
</script>
<script type="text/javascript" src="http://www.yourdomain.com/iRadeo/js/loader.js"></script>
|
Step 5:
You're done! Enjoy streaming.
My stream sometimes freezes or skips automatically,
how do I fix this?
This is an easy fix -- just remove the ampersand
(&) character from the filename and it should work. If you
run into an
issue like this again, try removing characters such as brackets,
ampersands, or other non-alphanumeric characters (- and _ should
be
alright).
File Name Example:
Wrong:
Jackson & (featuring Carey) - Beautiful World.mp3
Correct:
Jackson and featuring Carey - Beautiful World.mp3
Additional information:
Customize the player by editing the single CSS file
located here >> css/player.css
Make sure your MP3 has ID tag
information available to allow iRadeo to show the streaming
file information. |