Help - Search - Members - Calendar
Full Version: Wav Player Help
Zymic Webmaster Forums > Web Design & Development > Graphic Design > Animation (Flash, GIFs, etc)
gabykorupt
Hy ... I am a music producer, MC ... and I try to find a flash player for my .wav files. Can anyone Help me ? dry.gif
Perry
LongTail Video Player

Try that. That script SHOULD play .wav files, but don't quote me. It says it plays any media type that flash allows, and I believe wav is one of those. wink.gif
Jacob
Audio files cannot be uploaded to Zymic as it is very hard to monitor file hosting and copyright so we do not allow them.
Perry
QUOTE(NaRzY @ Oct 14 2009, 06:06 AM) *
Audio files cannot be uploaded to Zymic as it is very hard to monitor file hosting and copyright so we do not allow them.


He never said his site was hosted on Zymic, Narzy. But you may know something I don't tongue.gif
ben padgett
VISIT MY MORE DETAILED TUTORIALClick to view attachmentThe solution to this would be to convert the files to .mp3 and upload them to an external source that accept that format of file like Fileden. You need to convert the files so that they are going to be compatible with the player that is attached to the top of the post. To prove that the method i will guide you through will work check mine out by clicking here..

Open the playlist file from the download and you will see the following:

CODE
<?xml version="1.0" encoding="UTF-8"?>
<xml>
    <track>
        <path>PUT THE WEB ADDRESS OF THE FILE YOU WANT. FOR EXAMPLE HTTP://WWW.FILEDEN/FILE1.MP3</path>
        <title>PUT THE TEXT THAT YOU WANT TO APPEAR FOR THE SONG NAME</title>
    </track>
    <track>
        <path></path>
        <title></title>
    </track>
    <track>
        <path></path>
        <title></title>
    </track>
    <track>
        <path></path>
        <title></title>
    </track>
    <track>
        <path></path>
        <title></title>
    </track>
    <track>
        <path></path>
        <title></title>
    </track>
    <track>
        <path></path>
        <title></title>
    </track>
    <track>
        <path></path>
        <title></title>
    </track>
    <track>
        <path></path>
        <title></title>
    </track>
    <track>
        <path></path>
        <title></title>
    </track>
    <track>
        <path></path>
        <title></title>
    </track>
    <track>
        <path></path>
        <title></title>
    </track>
</xml>


- In between <path> and </path> put the location of the file in web address form. For example if i have a song at http://fileden.com/upload/bashy.mp3 the code for the path will look like this:
<path>http://fileden.com/upload/bashy.mp3</path>

- In between the <title> and </title> put the text that you want to appear within the player for the song name. For example if i have Bashy Who Wants To Be A Millionaire at http://fileden.com/upload/bashy.mp3 the title i will use is:
Bashy - Who Wants To Be A Millionaire. The result of this will be:
<title>Bashy - Who Wants To Be A Millionaire</title>

- So the final code for Bashy Who Wants To Be A Millionaire would be:
CODE
<track>
              <path>http://fileden.com/upload/bashy.mp3</path>
              <title>Bashy - Who Wants To Be A Millionaire</title>
</track>


- Do this for all the song you have so that when you have finished you will have your playlist file.

- Now open the file called sampleEmbedCode with notepad. (the file is in the download) Find and copy the following from the file:
CODE
&lt;script type="text/javascript" src="swfobject.js"></script>
        
<div id="flashPlayer">
  This text will be replaced by the flash music player.
</div>

&lt;script type="text/javascript">
   var so = new SWFObject("playerMultipleList.swf", "mymovie", "545", "700", "7", "#FFFFFF");  
   so.addVariable("autoPlay","no")
   so.addVariable("playlistPath","playlist.xml")
   so.write("flashPlayer");
</script>


- Paste the code into the body of the html page that you want it to display on and set the allignments to suit your webpage by editing the following part of the code:
CODE
mymovie", "545", "700", "7"


- Upload the following files from the download: playerMultipleList, playlist, swfobject as well as the html document you embedded it on.

Good Luck Ben P
Contact me if you need any help. benpadgett@techemail.com
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2012 Invision Power Services, Inc.