uCoz Community » uCoz Modules » Additional Features » Music on the Site (How to add music .mp3, playlist so on...)
Music on the Site
Sunny
Posts: 9296
Reputation: 456

Message # 1 | 12:28 PM
You can insert mp3 player into any page or message. It may serve to let visitors listen to various compositions. It may be a background for you site (do not abuse this capability, don’t forget that mp3 files weight quite a lot, and not all users have broadband Internet access. They won’t be able to load your site in case of automatic playback)

It is used in the following way:
By means of the BB-code:

Code
[audio] [/audio]

Having entered the following
Code
[audio]http://forum.ucoz.com/i_love_ucoz.mp3[/audio]

we'll get

You can also insert a player with the help of JS-code.
To get it use Multimedia - > Insert audio (mp3)
or Multimedia - > Upload audio (mp3) [after uploading press JS-code near necessary file]
As a result, for the mp3 file at http://forum.ucoz.com/i_love_ucoz.mp3
we'll get the following code

Code
<script src="http://forum.ucoz.com/media/?auto=0;small=0;color=0055e9;textoff=0;t=audio;f=http%3A%2F%2Fforum.ucoz.com%2Fi_love_ucoz.mp3" type="text/javascript"></script>

You can also insert it into any place of your site. Besides, it has controlled parameters (settings), which we’ll describe below.

Quote
auto=0;small=0;color=0055e9;loop=0;textoff=0

Values in bold type may be changed from 0 to 1. In this way, you’ll enable them. By means of "color" specify code color.
So, if we change in the code
auto=0 for auto=1 - a song will be played automatically (be careful with this feature, think of those who have slow Internet and paid traffic).

small=1 – will display a small player of two buttons. Here it is:

loop=1 – a file will be played back non-stop (till you press stop)

textoff=1 – will remove text (e.g. "i_love_ucoz.mp3" in the example above)

color=0055e9 (player color management) –instead of 0055e9 write the code of a desired color. Codes can be found out from tables or in Photoshop by clicking on a color.
Example. Let’s take the code of the black color - 000000

Code
<script src="http://forum.ucoz.com/media/?auto=0;small=0;color=000000;textoff=0;t=audio;f=http%3A%2F%2Fforum.ucoz.com%2Fi_love_ucoz.mp3" type="text/javascript"></script>

we'll get:



Music as a background

Code
<bgsound src="URL" loop=5 volume=0 balance=0>

where
URL – file name
loop – number of repeats, if loop="infinite" - unlimited
format - .wav .mid

EMBED tag

It is used to insert into pages multimedia content and other files.

Code
<EMBED attributes> </EMBED>

  • height sets vertical size of embedded object

  • width sets horizontal size of embedded object

  • autostart sets possibility to start while loading, takes on the values "true" or "false"

  • loop sets number of repeats, takes on the values "true" or "false"

  • hidden allows to hide active module, takes on the values "true" or "false"

  • src specifies URL of a multimedia file

  • pluginspage specifies URL of the plug-in for playing back a multimedia file

  • bgcolor sets background of the object

  • type specifies multimedia file type

  • quality specifies multimedia file quality

  • alt sets alternative content

    Code
    <EMBED src="file.swf" menu="true" quality="high" bgcolor="#000066" width="760" height="410" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave"></EMBED>

    As you can see from the example you can insert Flash files, as well as video and audio.

    You can write a code with minimal number of attributes

    Code
    <embed src="video.avi" width="760" height="410">

    Music in a pop-up (new) window

    There is nothing difficult, use JavaScript

    On the page where you want to place the button "Play music" insert the following code between the < head> tags

    Code
    <script>
    function openWindow()
    {
    muzWindow = open("http://www.ucoz.com/music.html", "newWindow", "width=300,height=300, status=no, toolbar=no, menubar=no");
    }
    </script>

  • width=300 height=300 – width, height
  • http://www.ucoz.com/music.html – link to the page with your music

    Then put in any place of the page either the link

    Code

    <a href="#" onClick="openWindow()">Press to play music</a>

    or the button

    Code
    <button onClick="openWindow()">Press to play music</button>

    I'm not active on the forum anymore. Please contact other forum staff.
  • TanKerK
    Posts: 3
    Reputation: 0

    Message # 106 | 1:41 PM
    hi

    i have add a mp3 on my main page but the sound is strong
    It's not possible to decrease volume ?

    My site : http://celestal.ucoz.com/

    Code use :

    Code
    <script src="http://celestal.ucoz.com/media/?auto=1;small=0;color=ff0000;loop=1;textoff=0;t=audio;f=http%3A//celestal.ucoz.com/CraigArmstrong-EscapeRemixAnuncioSeatLeon.mp3" type="text/javascript"></script>
    Post edited by TanKerK - Sunday, 2009-09-27, 1:42 PM
    Sunny
    Posts: 9296
    Reputation: 456

    Message # 107 | 8:49 AM
    Quote (TanKerK)
    It's not possible to decrease volume ?

    And how is this related to uCoz? If you want to decrease volume, decrease it on your PC.


    I'm not active on the forum anymore. Please contact other forum staff.
    Stormbringer
    Posts: 2
    Reputation: 0

    Message # 108 | 7:31 PM
    I am using mp3's as backdround music on my site, they don't seem to be working, are we allowed to use mp3's? on our sites? or are we limited to midi's and wav's?
    Renatus
    Posts: 58
    Reputation: 12

    Message # 109 | 7:54 PM
    Yes the use of MP3 is allowed since it is HTML it is probably how you implement it. That is incorrectly.
    Stormbringer
    Posts: 2
    Reputation: 0

    Message # 110 | 8:22 PM
    ok thanks. other then using <embed> or <bgsound> is there another ay to implement the mp3's?
    Renatus
    Posts: 58
    Reputation: 12

    Message # 111 | 8:28 PM
    <embed src="filename.mp3" width="x" height="x" autoplay="x" hidden="x" loop="x" volume="x"></embed>

    Typical Format. If it's hidden you don't need width and height

    Igor-Sousa
    Posts: 93
    Reputation: 18

    Message # 112 | 8:28 PM
    You can also use "Multimedia" tab in your admin bar.
    I've made grammar mistakes ?? Google's fault !!

    Time is the most valuable thing a man can spend.

    NTP
    Posts: 296
    Reputation: 10

    Message # 113 | 2:18 AM
    i can't get the background music to work
    Web design and film == my 2 passions.

    Genesis Inc. ~ New Horizons, New Beginnings
    Dartz
    Posts: 1931

    Message # 114 | 3:21 AM
    And what you expect us to do? We provided all information you need, re-read.
    [... With uCoz since December 2 2007 ...]
    Sunny
    Posts: 9296
    Reputation: 456

    Message # 115 | 11:01 AM
    Or at least be more specific.
    I'm not active on the forum anymore. Please contact other forum staff.
    NTP
    Posts: 296
    Reputation: 10

    Message # 116 | 3:08 AM
    I tried putting the music on my site, including a music url, but i don't hear anything
    Web design and film == my 2 passions.

    Genesis Inc. ~ New Horizons, New Beginnings
    Dartz
    Posts: 1931

    Message # 117 | 5:07 AM
    Tried to turn on volume? If yes, provide code you're trying to use.
    [... With uCoz since December 2 2007 ...]
    l2eclipse
    Posts: 1
    Reputation: 0

    Message # 118 | 2:34 AM
    Pleasant nase good
    www.ucoz.com the best
    Tommy
    Posts: 454
    Reputation: 38

    Message # 119 | 3:38 AM
    l2eclipse, what are you trying to say?
    "I don't like to commit myself about heaven and hell - you see, I have friends in both places"
    Killer047
    Posts: 26
    Reputation: 0

    Message # 120 | 2:41 PM
    I have a question! How to make that this music continue to play from same place when user will go to another page??? Is it possible?
    uCoz Community » uCoz Modules » Additional Features » Music on the Site (How to add music .mp3, playlist so on...)
    Search: