How to make an Mp3 player, with some neat looks?

Hey guys,
I need to make an mp3 player, with some nice looks.
Please help!

maybe try this
http://jplayer.org/

Similar Messages

  • Is Creative going to make a mp3 player with the 24-bit Crystaliz

    I have dropped my Zen Touch 20 GB a few times (I know, I'm clumsy), and the most recent drop really damaged it. It still plays, but I can only scroll down with the touch pad (scrolling up goes down as well), and rarely the song skips forward randomly (progress bar does not skip forward though, this has happened ever since I got much Touch, but it happens slightly more frequently now).
    I've tried pushing in on the touch pad as some have suggested, and resetting the Zen Touch did not help.
    I was considering investing in a Zen Sleek Photo, but I think I will stick my Touch since I mostly use Shuffle play anyways.
    However, has Creative announced any plans to create a mp3 that uses the 24-bit Crystalizer from the X-Fi soundcard series? I have a X-Fi Fatlty edition, and the sound is absolutely amazing, it blows standard CD and mp3 players away. If Creative made a mp3 player with the Crystalizer, I would buy it no questions asked, death to the iPod!
    ... That's IF Creative makes one, so does anyone happen to know? It may not even be technically possible, but heck if I know

    Yes, it is technically possible and Creative will incorporate the X-Fi technology in its future MP3 players.
    This was confirmed by Creative CEO, Mr Sim Wong Hoo when Creative announced its quarterly earnings about a month ago.
    At that time, Mr Sim also said that the earliest we can see the X-Fi technology on Creative's MP3 players might be early next year.
    But as Creative will be releasing a yet-to-be-announced product in Paris tommorrow (8 dec), i'm not sure if we will get to see it earlier than expected!
    Just keeping my fingers crossed, but what ever new product Creative release tmr, it will definately make my xmas more merry!

  • How to make adobe flash player content on websites run on safari browser of my ipad?

    How to make adobe flash player content on websites run on safari browser of my ipad?do I have to install adobe flash player on my ipad ?

    The flash add-on is not available for Safari on iOS. Never has been and in fact Adobe has ceased support for flash for mobile devices in general. Your options, depending on the specific sites:
    See if the site or sites in question have their own apps availabel in teh app store
    Look into some browsers such as Puffin adn iSwifter (there are others, I beleive). These browsers use a third server site to translate the flsh content into a form that the iPAd can use and restreams them to you. They may not work with all content.
    Use a computer capable of running flash.
    Seek a source of the conent that is designed for non flash use.

  • Audio player with some extra's - can't get player realized

    I try to build an audio player with some extra's like looping between 2 time marks.
    Till now i have an interface that can play back audio files but after that the problems start.
    There is no way i can add functions without creating a {color:#ff0000}NotRealizedError{color}.
    According to the documentation the start() method should realize (etc) the player, but it doesn't in my program and neighter does the method player.realize();.
    Can someone give me a hint to get me on the road again.
    Thanks in advance.
    Here is the complete code which generates the NotRealizedError on the dp.setRate(); method:
    (most of it is older source from a basic player on the internet).
    package dictaplayer;
    import java.awt.*;*
    *import java.awt.event.*;
    import java.io.*;*
    *import java.net.MalformedURLException;*
    *import java.net.URI;*
    *import java.net.URL;*
    *import javax.swing.*;
    import javax.media.*;
    public class DictaPlayer extends JFrame {
    private Player dp;
    private URI uri;
    private URL url;
    private boolean realized = false;
    public DictaPlayer()
    super( "Testing DictaPlayer" );
    JButton openFile = new JButton( "Open file to play" );
    openFile.addActionListener(
    new ActionListener() {
    public void actionPerformed( ActionEvent e ) {
    openFile();
    createPlayer();
    getContentPane().add( openFile, BorderLayout.NORTH );
    setSize( 300, 300 );
    setVisible(true);
    private void openFile()
    File file = null;
    JFileChooser fileChooser = new JFileChooser();
    fileChooser.setFileSelectionMode(
    JFileChooser.FILES_ONLY );
    int result = fileChooser.showOpenDialog( this );
    // user clicked Cancel button on dialog
    if ( result != JFileChooser.CANCEL_OPTION )
    file = fileChooser.getSelectedFile();
    try {
    uri = file.toURI();
    } catch (SecurityException e) {
    e.printStackTrace();
    // Convert the absolute URI to a URL object
    try {
    url = uri.toURL();
    } catch (IllegalArgumentException e) {
    e.printStackTrace();
    } catch (MalformedURLException e) {
    e.printStackTrace();
    private void createPlayer()
    if ( url == null )
    return;
    removePreviousPlayer();
    try {
    // create a new player and add listener
    dp = Manager.createPlayer( url );
    // blockingRealize();
    dp.addControllerListener( new EventHandler() );
    dp.start(); // start player
    dp.setRate(2);
    catch ( Exception e ){
    JOptionPane.showMessageDialog( this,
    "Invalid file or location", "Error loading file",
    JOptionPane.ERROR_MESSAGE );
    private void removePreviousPlayer()
    if ( dp == null )
    return;
    dp.close();
    Component visual = dp.getVisualComponent();
    Component control = dp.getControlPanelComponent();
    Container c = getContentPane();
    if ( visual != null )
    c.remove( visual );
    if ( control != null )
    c.remove( control );
    private synchronized void blockingRealize() {
    int teller = 1;
    dp.realize();
    while (!realized && teller <= 20) {
    try {
    wait(1000);
    System.out.println("not realized " +teller);+
    +teller++;
    } catch (java.lang.InterruptedException e) {
    System.exit(1);
    public static void main(String args[])
    DictaPlayer app = new DictaPlayer();
    app.addWindowListener(
    new WindowAdapter() {
    public void windowClosing( WindowEvent e )
    System.exit(0);
    // inner class to handler events from media player
    private class EventHandler implements ControllerListener {
    public void controllerUpdate( ControllerEvent e ) {
    if ( e instanceof RealizeCompleteEvent ) {
    Container c = getContentPane();
    // load Visual and Control components if they exist
    Component visualComponent =
    dp.getVisualComponent();
    if ( visualComponent != null )
    c.add( visualComponent, BorderLayout.CENTER );
    Component controlsComponent =
    dp.getControlPanelComponent();
    if (!realized) {
    System.out.println("not realized.");
    if ( controlsComponent != null )
    c.add( controlsComponent, BorderLayout.SOUTH );
    c.doLayout();
    }

    captfoss,
    Thank you for your comment.
    captfoss wrote:
    Start does realize the player, automatically, before it starts it... if it isn't realizing then it also isn't starting.Right, I thought so, but my test was wrong. I now tested it with getState() and I can see it's going from unrealized to realized.
    First off, you can only call setRate on a player that is realized but not started... further, any of the calls like configure, realize, start, stop, etc... are non-blocking calls...so you have to wait for them to finish before you go on to the next step.So you say that when the rate is changed (f.i. by a user in a gui) the program first has to bring player in non-started realized mode (stop + realize), call the setRate() and start the player again (on the exact position it was stopped)?
    The easiest solution would be to use Manager.createRealizedPlayer rather than Manager.createPlayer...Didn't find out yet why, but when i change this (only this), there is no playing.
    Also, ++teller++ is about the most-confused looking code I've ever seen...Just like all the asterisks, i now know that code changes when i toggle between the tabs (rich/plain/preview) in the message box.
    Beyond that, your "blocking realize" function doesn't appear to do anything except suggest you have no business coding anything this advanced. Your boolean value "realize" isn't ever changed, so, I'm not entirely sure what the point of that function is other than to wait 10 seconds.I got this somewhere from the internet. Thought it could help me realize the player, but it didn't (obvious) so i commented it out.
    Slowly I begin to understand the basics of JMF (at least i think so), but I also understand that there are other (Java) ways to build the application I need. Unfortunatly I have to little (hardly any) knowledge of all those (sound) API's (f.i. JLayer) to find my way through them and to decide which is the best for my use (user controled audio playback (at least WAV and MP3) with looping possiblities between 2 marked positions).
    If someone could give me an advise which API (method or whatever you call it) is best to focus on I shurely would appriciate that.

  • Is their any tutorials on how to make a navigation bar with drop downs in Dreamweaver CC now ?

    Is their any tutorials on how to make a navigation bar with drop downs in Dreamweaver CC now that they do not have the spry option?

    bbull2005 wrote:
    Preran, why wouldn't Dreamweaver include it's own menu/navigation bar widget?
    I can't answer on Preran's or Adobe's behalf, but I think you'll find at least part of the answer here: http://wiki.jqueryui.com/w/page/38666403/Menubar
    Adobe decided to discontinue development of Spry in August last year, and Dreamweaver CC made the switch to using jQuery UI widgets and effects. One reason for dropping Spry was that it failed to work correctly in some browsers. Judging from the fact that the jQuery UI menubar is now "on ice", creating a flyout menu that works reliably across all devices is proving more difficult than originally envisaged.
    Because all other widgets in Dreamweaver CC use jQuery UI, it's a reasonable assumption that Adobe hoped the jQuery UI menubar would be ready in time, but it wasn't.

  • How to update adobe flash player with os10.6.8

    how to update adobe flash player with os10.6.8

    You can check here what version of Flash player you actually have installed:  http://kb2.adobe.com/cps/155/tn_15507.html
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS. You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications (including Safari) first before installing. You must also carry out a permission repair after installing anything from Adobe.
    After installing, reboot your Mac and relaunch Safari, then in Safari Preferences/Security enable ‘Allow Plugins’. If you are running 10.6.8 or later:
    When you have installed the latest version of Flash, relaunch Safari and test.
    If you're getting a "blocked plug-in" error, then in System Preferences… ▹ Flash Player ▹ Advanced
    click Check Now. Quit and relaunch your browser, but check this also:
    http://support.apple.com/kb/HT5655?viewlocale=en_US&locale=en_US  which also covers ‘blocked plug-in’.

  • How to add this mp3 player in my movie flash

    How to add this mp3 player in my movie flash. This mp3 player
    was generated in other web site and after i created what i got back
    was this :
    <center><embed src="
    http://www.mp3asset.com/swf/mp3/myPod.swf"
    quality="high" wmode="transparent"
    flashvars="myid=3597756&path=2007/07/31&mycolor=0xAFC0D4&mycolor2=0x422F21&mycolor3=0xFFF FFF&autoplay=true&rand=0&f=3"
    width="180" height="380"
    name="myflashfetish" align="middle"
    type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    /><br>I made this <a href="
    http://www.myflashfetish.com"
    target="_blank">MySpace Music Player</a> at <a href="
    http://www.myflashfetish.com"
    target="_blank">MyFlashFetish</a>.com.</center><br><br>
    THIS CODE CAN BE ADDED IN ANY WEB PAGE BUT WHAT I WANTED TO
    KNOW IS HOW CAN I PUT THIS INSIDE OF MY FLASH MOVIE???? THANK YOU
    PLEASE HELP ME !!!!!!!!!!!!!

    use the same method that i posted in your other topic, but
    use a new empty movie clip with new instance name and replace the
    "URL" with
    http://www.mp3asset.com/swf/mp3/myPod.swf"

  • How to make Dynamically Shortened Text With "Show More"

    Hi there! i want to know how to make dynamically shortened text with show more or read more in my website using HTML 5 pages  or ASP.NET ?
    example like these paragraphs 
    Lorem Ipsum är en utfyllnadstext från tryck- och förlagsindustrin. Lorem ipsum har varit standard ända sedan 1500-talet, när en okänd boksättare tog att antal bokstäver och blandade dem för att göra ett provexemplar av en bok. Lorem ipsum har inte bara överlevt fem århundraden, utan även övergången till elektronisk typografi utan större förändringar. Det blev allmänt känt på 1960-talet i samband med lanseringen av Letraset-ark med avsnitt av Lorem Ipsum, och senare med mjukvaror som Aldus PageMaker.
    Det är ett välkänt faktum att läsare distraheras av läsbar text på en sida när man skall studera layouten. Poängen med Lorem Ipsum är att det ger ett normalt ordflöde, till skillnad från "Text här, Text här", och ger intryck av att vara läsbar text. Många publiseringprogram och webbutvecklare använder Lorem Ipsum som test-text, och en sökning efter "Lorem Ipsum" avslöjar många webbsidor under uteckling. Olika versioner har dykt upp under åren, ibland av olyckshändelse, ibland med flit (mer eller mindre humoristiska).
    I motsättning till vad många tror, är inte Lorem Ipsum slumvisa ord. Det har sina rötter i ett stycke klassiskt litteratur på latin från 45 år före år 0, och är alltså över 2000 år gammalt. Richard McClintock, en professor i latin på Hampden-Sydney College i Virginia, översatte ett av de mer ovanliga orden, consectetur, från ett stycke Lorem Ipsum och fann dess ursprung genom att studera användningen av dessa ord i klassisk litteratur. Lorem Ipsum kommer från styckena 1.10.32 och 1.10.33 av "de Finibus Bonorum et Malorum" (Ytterligheterna av ont och gott) av Cicero, skriven 45 före år 0. Boken är en avhandling i teorier om etik, och var väldigt populär under renäsanssen. Den inledande meningen i Lorem Ipsum, "Lorem Ipsum dolor sit amet...", kommer från stycke 1.10.32.
    Den ursprungliga Lorem Ipsum-texten från 1500-talet är återgiven nedan för de intresserade. Styckena 1.10.32 och 1.10.33 från "de Finibus Bonorum et Malorum" av Cicero hittar du också i deras originala form, åtföljda av de engelska översättningarna av H. Rackham från 1914.

    Moved to the main Dreamweaver support forum.
    There are several ways you could approach this. Here's one you might try:
    Give the first paragraph an ID, such as "first", and wrap the paragraphs you want to hide in a <div> with another ID, such as "more". Then add the following block of JavaScript just before the closing </body> tag of the page:
    <script>
    var first = document.getElementById('first'),
         more = document.getElementById('more'),
         trigger = document.createElement('span');
    trigger.id = 'trigger';
    trigger.innerHTML = 'Show less';
    first.appendChild(trigger);
    function toggleDiv() {
      var state = more.className,
           text = trigger.innerHTML;
      more.className = (state == 'open') ? 'closed' : 'open';
      trigger.innerHTML = (text == 'Show more') ? 'Show less' : 'Show more';
    toggleDiv();
    if (trigger.addEventListener) {
        trigger.addEventListener('click', toggleDiv, false);
    } else if (trigger.attachEvent) {
      trigger.attachEvent('onclick', toggleDiv);
    } else {
      trigger.onclick = toggleDiv;
    </script>
    This gets references to the "first" paragraph and the "more" <div>. It also creates a <span> with the ID "trigger" that's appended to the "first" paragraph. The rest of the script defines a function called toggleDiv(), which toggles the "more" <div> open and closed, and changes the text in the "trigger" <span>.
    You also need to create the following style rules for the various elements:
    <style>
    #trigger {
        text-decoration: underline;
        color: blue;
        cursor: pointer;
    #more {
        transition: ease-out .7s;
        overflow: hidden;
    #more p:first-child {
        margin-top: 0;
    #more.closed {
        height: 0;
        -webkit-transform: translateY(-600px);
        transform: translateY(-600px);
    #more.open {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        max-height: 600px;
    #more + p {
        margin-top: 0;
    </style>
    This solution hides the text and creates the "trigger" <span> only if JavaScript is enabled in the browser. It should work in all browsers, including Internet Explorer 8 and earlier.

  • My 3gs wont restore after ios 5 update. I have tried firmware restore and restore from backup, neither works. All I get is "iphone restore failed because backup session failed" Any ideas on how to make a successful restore with this ios 5 update?

    My 3gs wont restore after ios 5 update. I have tried firmware restore and restore from backup, neither works. All I get is "iphone restore failed because backup session failed" Any ideas on how to make a successful restore with this ios 5 update?

    I was having the same problem, I backed up my phone and then updated to iOS 5 and then it kept telling me it could not restore from my backup as it had failed.  After reading a bunch of forums and posts and trying everything, I did manage to get it to work.  I had tried the Time zone, creating a new computer user account, disabling anti-virus, etc.
    It took a combination of things, one of which was disabling the anti-virus completely and copying the contents of the backup folder to my desktop and then deleting everything in the backup folder.  Then I rebooted the PC, entirely disabled the anti-virus, copied the one backup I wanted to restore from the desktop to the backup folder and then trying to restore.  Low and behold the phone said restoring from backup and I am back in business, so when in doubt, trying combining some of the fixes together.

  • Flash Mp3 Player with 15 sec preview

    Hello,
    I in desperate need of some guidance. I am trying to make
    flash mp3 player that radomly plays mp3's from a specific folder
    for only 30 secs.
    Any idea's ??
    thanks
    DK

    if you just want to check the time when your app starts, use:
    function playSong(mySong:Number):void{
    var myTitle = my_songs[mySong].@TITLE;
    var myArtist = my_songs[mySong].@ARTIST;
    var myURL = my_songs[mySong].@URL;
    title_txt.text = myTitle;
    artist_txt.text = myArtist;
    if (my_channel){
    my_channel.stop();
    my_sound = new Sound();
    my_sound.load(new URLRequest(myURL));
    my_channel = my_sound.play();
    my_channel.addEventListener(Event.SOUND_COMPLETE, onNext);
        var myTime = new Date();
        var myHour:Number = myTime.getHours();
      var st:SoundTransform=my_channel.soundTransform;
       if ((myhour>=10)&&(myhour<=(22)){
    st.volume=1;
    } else {
    st.volume=0;
    my_channel.soundTransform=st;

  • Flash mp3 player with transparent background

    hi guys
    i've been mucking about with flash for a couple of years but only doing some animations and stuff
    however now i am trying to build my 1st website and i need a mp3 player with playlist and with a transparent background
    i've been search the net for a freebie (although i would be willing to buy if i found the right one)
    or i am happy to try and build my own in flash but could use a good tutorial
    can anyone point me in the right direction please
    many thanks
    Harv

    http://www.clickpopmedia.com/2008/04/15/making-an-mp3-player-in-as3/

  • Create a very simple mp3 player with flash

    newbie with flash...
    with the FLVPlayback component i can get a nice looking basic player for .flv files easily...
    Q: is there some way to set up the same functions to create a very simple mp3 player with flash?

    Search Google for "Flash MP3 tutorial"  and if you know which version of actionscript you plan to use, try substituting that for "Flash"

  • HT1460 Where can I find a dockable MP3 player with no games on it?

    I understand factory pre-loaded games can't be removed from an iPod. Apparently they serve some vital purpose. Who sells a dockable MP3 player with no games on it? I would gladly trade in one or more of my iPods for something like that.

    fabulous, thankyou. The flashplayer is great. P7 thing looks
    brilliant
    too - good to know it's there if I ever need it. Thanks
    again.
    djinn Wrote:
    > webber wrote:
    > > Hi, does anyone know of a good flash image player
    to insert into my
    > > webpage?
    > >
    > > I want one which is very simple and plain so that
    it doesn't clash
    > with
    > > my page design.
    > >
    > > The user needs to be able to click on 'next' when
    they want the next
    > > image to come up, rather than the images just
    fading in and out
    > > automatically.
    > >
    > > I have Macromedia Flash, but not a smidgen of
    experience in using
    > it,
    > > so it needs to be very simple to operate.
    >
    > I like this one.........
    >
    >
    http://www.monoslideshow.com/
    >
    > If you go to the demo page - you can customise the
    various albums that
    > are part of the demo and download the resulting xml file
    to use with
    > your purchased version.
    >
    > PVII have a very nice javascript offering, although not
    flash it is
    > well
    > worth a look.......
    >
    >
    http://www.projectseven.com/products/galleries/ssm/index.htm
    >
    > HTH
    >
    > --
    > chin chin
    > Sinclair

  • Looking for a MP3 Player with good Bass.

    Hi,
    I have a Nokia N73 Music edition phone. The built in MP3 player gives a decent output, but deep bass sounds are not reproduced properly and the overall sound is not very impressive (not crisp). I tested with two pairs of good Philips and Sony head phones, using a 2.5 mm audio converter (problem is not with the headphones).
    Is there a good Symbian MP3 player with a good equalizer or special signal processing features to produce deeper bass sounds? (Like Sony Ericsson MegaBase)

    Whatever you do to the sound with the processor (or a DSP) will be a compromise if the output stages aren't up to scratch.
    The only things you can do are
    increase the bass level (causes clipping in loud passages - I'm guessing this is what you tried and didn't like)
    compress the bass (bass will be loud enough in quiet passages, but won't be louder in the loud passages - I think this is a bit more processor intensive and complex and doubt there's any software that does it)
    or
    reduce the treble and midrange (you will have to turn the volume up, but if you can that's the best option as it should be lower in distortion). I would try this last idea and see how that does.

  • What is in the iPod touch that makes it wifi compatible ? Is it possible to make a mp3 player wifi compatible ?, What is in the iPod touch that makes it wifi compatible ? Is it possible to make a mp3 player wifi compatible ?

    I'm tryna make my mp3 player wifi compatible but first I need to know if it's possible or what I need to buy

    You cannot.  It would have to have a wi-fi radio installed into the device and the software to run it.

Maybe you are looking for

  • Saving Playli

    I am using Creative MediaSource Organiser with my Zen Xtra 60GB. I have all my music backed up on a hard dri've, but I'm afraid if something happens my mp3 player, I will lose all my playlists (I have lots and they took a long time to put together).

  • JDBC Driver for SQL 2000

    Hi all, Does anyone knows where I can download a JDBC driver for SQL 2000? Would you happen to have a sample code on how to use this driver to connect to SQL 2000. Any help is greatly appreciated in advance. Thanks, Mehran

  • Won't display bands that starts with Z

    My iPod has the strange, strange problem that it won't display ZZ Top. I can find the songs by searching through Albums, but they just don't show up on the All Artists list.

  • Unable to start ibtrackerobs. Application may need...

    Hi! I have Nokia 3230. When I start my cell, it gives this error.. 'Unable to start ibtrackerobs. Application may need to be removed' and then I have only one option 'Ok' on left selection key. When I press Ok, my cell gets hang and doesnt work.So I

  • Move sharepoint 2010 list to 2013 with lookup columns

    Hi all, Iam planning to move my sharepoint 2010 list to 2013.I done this using save site as template.But the look up columns are showing empty data.Can u please let me know the best solution to do this. Regards, Praveen