Cannot play MP3 files in Dreamweaver CS4

Hi
Apogogies if this has been asked before.
I have an embedded MP3 file on one of my DWCS4 pages but when I try to play it from the Properties Inspector I get the message "Unable to find the plugin that handles this media type".
The sound file plays OK in Firefox and IE but I would like to be able to test it in DW. I have the currrent version of Apple QuickTime Pro installed.
I am using both Windows XP and Vista with the same problem.
Is there a plug I can download for DW only in order to play these files without resorting to converting the MP3 to another format.
Any help would be much appreicated.
Thanks
George

Yes but I did exactly what I accused you of doing so it was really bad!
Software troubles can drive you a bit crazy. Sorry again.
From: pziecina <[email protected]>
Reply-To: <[email protected]>
Date: Thu, 08 Oct 2009 09:16:11 -0600
To: d maass <[email protected]>
Subject: Cannot play MP3 files in Dreamweaver CS4
Hi
Thank you for the apology, but as we have all (probably), misread and
therefore wrongly replied to posts, it is not really necessary.
PZ

Similar Messages

  • I cannot play mp3 file on itunes after i recover it from an external hdd

    hey guy'z i need a little help here
    i have a large mp3 file from an old 2TB which had a problem and then recovered and transfered to a new ext hdd.
    now after the recovery was done and i'm trying to play my music on the itunes it wont play
    any solution guys?
    and another thing is the wma file why i cant i play it also on my itunes?

    iTunes cannot play WMA files.  Use a conversion program such as Switch or EasyWMA to convert the WMA to MP3 or AAC.
    For your problem MP3, make sure it is a valid file by playing it in another player such as QuickTime.  If it plays there but not in iTunes, then it needs to be cleaned up with a program such as MP3 Validator.

  • Cannot play mp3 files in car stereo after upgrade 5.0.1

    I upgraded to 5.0.1 a few weeks ago and just tried burning an mp3 cd to play on my Kenwood in my car. Befor the upgrade, no problems, now, nothing plays, just starts on track one, no title display and just plays silence for as long as I could scan forward, over 30 minutes!
    And My Kenwood is less than a year old so it's not the player. And it will play in my dvd player but it took about 5 minutes before the disc loaded and started playing. All I know, is befor eth eupgrade it worked in my car, now it doesn't and really, iTunes is no good to me now!
    Amyone have any suggestions? Found a fix?

    Have you tried "FingerPrint" by "Collobos Software" at http://www.collobos.com
    You can download the software free for evaluation, only costs $10.00 to purchase if it works for you.

  • [SOLVED] Amarok says phonon cannot play mp3 files anymore

    It also says "too many errors encountered in playlist".
    Does anyone know a fix for this?
    ty
    Last edited by dabd (2011-06-01 03:27:00)

    dabd wrote:
    JokerBoy wrote:I use dwm, and amarok it's still working. but I have phonon-vlc installed..
    I installed phonon-vlc and configured Amarok to use this phonon backend and now I have sound!
    Thanks!
    Thank you. It helped me also .

  • DW CS4 cannot embed mp3 files

    Windows 7.  IE 8,  Firefox 3.6.8, Chrome
    I want to embed mp3 files in my web pages. I go to Insert/Media/Plugin and select an mp3 files from the box that appears. The placeholder for the player appears on the appropriate spot on the page. I highlight the placeholder and click on the Play button in property inspector. An error message then appears saying "Unable to find the plugin that handles this media type. Dreamweaver looks in both the Configurations/Plugin folder and the plugin folder for each of your installed browsers". The Config/Plugin folder contains NPSWF32.dll and UnsupportedPlugins.txt (contains npdsplay.dll nppdf.dll). Also when I go to Live view there is a blank space where the player should be. I do not have any problems playing mp3 files with WMP, Real audio or Quicktime which are all installed on my computer.
    What must I do?
    Sulphonato

    Yes but I did exactly what I accused you of doing so it was really bad!
    Software troubles can drive you a bit crazy. Sorry again.
    From: pziecina <[email protected]>
    Reply-To: <[email protected]>
    Date: Thu, 08 Oct 2009 09:16:11 -0600
    To: d maass <[email protected]>
    Subject: Cannot play MP3 files in Dreamweaver CS4
    Hi
    Thank you for the apology, but as we have all (probably), misread and
    therefore wrongly replied to posts, it is not really necessary.
    PZ

  • Cannot play multimedia files (Solved)

    I've upgraded gnome to the 2.14 version, and it works fine except that totem cannot play mp3, avi, mpeg, etc.
    Before I upgraded it could play those files without problem but now it gives me this message:
    " You do not have a decoder to play this file"
    "You might need to install the necessary plugins"
    So, what does this mead, before it worked great, but now it doesn't, I have reinstalled the "gst-plugins" package and the "codecs" package but still nothing, even after doing "gst-register".
    So how could I fix it?

    2.14 uses gstreamer 0.10 not 0.8.x. The gstreamer 0.10 plugin for the mp3 decoder would be for example: gstreamer0.10-mad

  • SWF to play mp3 files located on the server

    Hello,
    Does anyone know if it is possible to create an SWF file that can play mp3 files directly from the server, without the need for a streaming media server or external JS.
    And also for the application to read the current directory its located in and build a playlist based on the files inside.
    any information of examples would be greatly appreciated.
    Peter.

    As for loading and playing the files there is no issue.  Simply load them as you would load any file.  You can even use a relative path if they are in the same folder as the SWF, or a sub-folder that is in the folder with the SWF.
    As for looking at the server directory for what files are there, and using them - I know of no way to do this.  That doesn't mean it is impossible, just that I haven't come across a method in my experience.
    What I typically do is to archive the list of files in an XML file, and load the XML.  I know, that adds an extra step, and an extra file, but it is the easiest method for approximating what you want to do.
    Let me edit this response.
    You could use javascript, or a server language to grab the list of files in the directory and pass it into Flash via the ExternalInterface classes.

  • Simple GUI playing mp3 files

    Hi everyone , i am building a simple GUI playing mp3 files in a certain directory.
    A bug or something wrong with the codes listed down here is very confusing me and makes me desperate. Can anyone help me please ?
    import javax.swing.*;
    import javax.media.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.net.*;
    class PlayMP3Thread
    extends Thread
    private URL url;
    String[] filenames ;
    File[] files ;
    boolean condition=true;
    boolean pause=false;
    int count ;
    public PlayMP3Thread() { }
    public PlayMP3Thread(File[] files)
    //try
              this.files = files;
         filenames = new String[files.length];
         count = -1;
         // this.url = mp3.toURL();
         //catch ( MalformedURLException me )
    public void run()
    try
         while (condition)
              count++;
              if (count > (filenames.length - 1)) {
                        count = 0;
              this.url = files[count].toURL();
    MediaLocator ml = new MediaLocator(url);
    final Player player = Manager.createPlayer(ml);
    /*player.addControllerListener(
    new ControllerListener()
    public void controllerUpdate(ControllerEvent event)
    if (event instanceof EndOfMediaEvent)
    player.stop();
    player.close();
    player.realize();
    player.start();
    catch (Exception e)
    e.printStackTrace();
    public void stops()
    //stop the thread
    condition=false;
    pause=false;
    public void pause()
    while(!pause)
    //pause the thread
    try
    wait();
    catch(Exception ex){}
    pause=true;
    public void resumes()
    while(pause)
    notify();
    pause=false;
    } // end of class MP3Thread
    public class mp3Play extends JFrame {
    JTextField direcText ;
    JFileChooser fc;
    static final String
    TITLE="MP3 PLAYER",
    DIRECTORY="Directory : ",
    BROWSE="Browse...",
    START="Start up",
    STOP="Stop",
    PAUSE="Pause",
    RESUME="Resume",
    EXIT="Exit";
    public static void main(String args[])
         PlayMP3Thread play = new PlayMP3Thread();
         mp3Play pl = new mp3Play();
    } // End of main()
    public mp3Play() {
    setTitle(TITLE);
         Container back = getContentPane();
         back.setLayout(new GridLayout(0,1));
         back.add(new JLabel(new ImageIcon("images/hello.gif")));
         fc = new JFileChooser();
         fc.setFileSelectionMode(fc.DIRECTORIES_ONLY);
         JPanel p1 = new JPanel();
         p1.add(new JLabel(DIRECTORY, new ImageIcon("images/directory.gif"), JLabel.CENTER));
    p1.add(direcText = new JTextField(20));
         JButton browseButton = new JButton(BROWSE, new ImageIcon("images/browse.gif"));
         browseButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    int returnVal = fc.showOpenDialog(mp3Play.this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
              direcText.setText(fc.getSelectedFile().toString());
              File[] files = (new File(direcText.getText())).listFiles(this);
         p1.add(browseButton);
         back.add(p1);
         JPanel p2 = new JPanel();
              JPanel butPanel = new JPanel();
              butPanel.setBorder(BorderFactory.createLineBorder(Color.black));
              JButton startButton = new JButton(START, new ImageIcon("images/start.gif"));
              startButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
                        PlayMP3Thread play = new PlayMP3Thread(files);
                        play.start();
         butPanel.add(startButton);
         p2.add(butPanel);
         JButton stopButton = new JButton(STOP, new ImageIcon("images/stop.gif"));
         stopButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
              play.stops();
         p2.add(stopButton);
         JButton pauseButton = new JButton(PAUSE, new ImageIcon("images/pause.gif"));
         pauseButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
              play.pause();
         p2.add(pausetButton);
         JButton resumeButton = new JButton(RESUME, new ImageIcon("images/resume.gif"));
              resumeButton.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e) {
                   play.resumes();
         p2.add(resumeButton);
         back.add(p2);
    JButton exitButton = new JButton(EXIT, new ImageIcon("images/exit.gif"));
              exitButton.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e) {
                   System.exit(0);
              p2.add(exitButton);
              back.add(p2);
              addWindowListener(new WindowAdapter() {
         public void windowClosing(WindowEvent e) {
         System.exit(0);
              pack();
         setVisible(true);
    }

    Actually I don't know much about fixing technical error or logical error.
    When it compiled , there are 6 errors showed up :
    can't resolve symbol : method listFiles (<anonymous java.awt.event.ActionListener>)
    location: class java.io.File
              File[] files = (new File(direcText.getText())).listFiles(this);
    can't resolve symbol: variable files
                        PlayMP3Thread play = new PlayMP3Thread(files);
    can't resolve symbol: variable play
              play.stops();
    can't resolve symbol: variable play
              play.pause();
    ^
    can't resolve symbol : variable pausetButton
    location: class mp3Play
         p2.add(pausetButton);
    ^
    can't resolve symbol: variable play
                   play.resumes();
    Any suggestions ?

  • ITunes takes a few seconds to start playing MP3 files

    I just started using this new MacBook Pro and transfered my music library to the new laptop. I'm having a problem with iTunes playing MP3 files: when I double click on a MP3 track iTunes seems to freeze for like 3 - 4 seconds before the track starts playing and then it plays normally without a hitch. This is happening with each and every MP3 track that I have in the library as well as new MP3 tracks that I'm adding. Th short delay/freeze also occurs when I try to view or alter the info of an MP3 track in the library, so that when I right click on a track and click Get Info, the 'Get Info' screen will take about 3 - 4 seconds to show up and the same freeze happens when I click OK to close the 'Get Info' screen.
    Note that this happens only with MP3 tracks. Tracks purchased from the iTunes store (AAC) do not have this problem and start playing without any delay/freeze.
    Another weird tidbit: When MP3 tracks are in the same playlist (or album) and I let them play one after another (without me skipping to the next/previous song) then the delay/freeze does not occur at all. This delay seems to just happen when I start playing a song or when I click the fast forward/Rewind buttons to skip to the next/previous track.
    Does anyone know what might be causing this? And if a fix is available somewhere? Thanks in advance!

    It only happens on mp3s not on AAC's to me too! Just so you all know. I thought an EXTERNAL DRIVE was my problem but after hours of research I found it's probably an intentional bug (just kidding Apple you don't hate other companies that much....geesh! ) It might not be this...but you never know.
    I thought maybe it was the TAG but it seems this has nothing to do with it. Point is either Apple left a bug on the last update of itunes MP3s because to them it's less of a priority or it's being messed up by Amazon folders (still looking in to), or maybe there was a problem with the install.
    So far my options are to get an MP3 to AAC convertor and dump my 3000 songs into a program for converting, wait for an update, reinstall, or keep looking for a missed solution.
    Any help would be appreciated!!
    [email protected]

  • I am using Firefox 3.6.13 and have installed Windows Media Player 1.0.0.8 for Firefox. However, if I attempt to open a file with a .wmv extension it appears to function properly, except, that I cannot "play" the file. What am I doing wrong?

    # Question
    I am using Firefox 3.6.13 and have installed Windows Media Player 1.0.0.8 for Firefox. However, if I attempt to open a file with a .wmv extension it appears to function properly, except, that I cannot "play" the file. What am I doing wrong?

    You probably have not seen anyone reporting the exact same problem as you. All three crash reports have the same crash signature and as currently ranked 67 it is not the commonest of reasons for a crash.
    I hope you enter your email contact information when reporting crashes. I note you see this crash when using videos, others may possibly see this crash in other circumstances.
    You have already tried the obvious, attempts at a fix so it is now down to wait and see, maybe developers working on the bug will report something or fix it.
    Did you try my suggestion of installing portable ESR ?
    For forum cross referencing purposes
    * Crash Reports for Crash IDs <br />bp-71697f5d-41d4-48ae-9db9-3e6302130607<br /> bp-6e1347bc-153f-433a-9c35-a5f022130607<br /> bp-92a533a2-9e09-4c1e-8df7-deb4c2130607
    *(all three) Crash Signature: EnumSoftwareMFTs(_GUID const&, unsigned int, __MIDL___MIDL_itf_mfobjects_0000_0006_0003 const*, __MIDL___MIDL_itf_mfobjects_0000_0006_0003 const*, IMFActivate***, unsigned int*)
    * Related bug 858667 NEW crash in mozilla::wmf::MFTEnumEx @ EnumSoftwareMFTs
    *I note this was first seen in Fx21 and is 100% Windows 7
    <br />

  • Safari no longer plays mp3 files (OS X 10.9.5 Safari 7.1). Help!

    I have a 6-month-old MacBook Pro (13" Classic) running OS X 10.9.5. I use Safari 99% of the time to browse the web (version 7.1). Quicktime Player 10.3.
    All of a sudden (this week), Safari has stopped playing mp3 files. I have always been able to click on a link to an mp3 file and it would play in the browser. Now, this has stopped working. It does open a black page with the audio scroll bar showing. However, the arrow will not respond if I click it and it just says "Loading..." forever.
    What's up?!

    Force quit Safari and relaunch it while holding down the shift key.

  • I cannot open my file in Photoshop cs4 when it is in camera raw... please help me... Judi dunn

    I cannot open my file in Photoshop CS4 from camera raw... it wont go.. please help me... judi dunn

    I figured it out myself... judi (:-))

  • Netstream.play() mp3 file

    Hello.
    I am having troubles playing an mp3 stream, using
    Netstream.play()
    According to AS 3.0 livedocs in Adobe...
    quote:
    To play MP3 files, use mp3: before the stream name. To play
    the ID3 tags of MP3 files, use id3: before the stream name
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/NetStream.html)
    When I test playing a video stream (.flv), everything works
    fine.
    The error I get when I try to play an mp3 is:
    Failed to play (stream ID: 1) code:
    NetConnection.Call.BadVersion
    I tried every different type of combinations:
    stream.play("mp3:test.mp3"), (test), (test.mp3) and nothing works.
    However, only in "mp3:test" I get the Call.BadVersion error. On the
    other ones, simply it doesn't play nothing... It finds the file
    though... because I get some results in the event handlers that i
    don't get when I enter an invalid filename...
    My question is... What is "NetConnection.Call.BadVersion",
    and is it really possible to play an mp3 stream. Are there other
    methods?

    Hi,
    Just check this url .its good you will get some idea.
    http://labs.flexcoders.nl/samples/MP3Player/version003/srcview/index.html
    Thanks,
    Anand.G

  • When updating .lbi files in DreamWeaver CS4 I get an invalid path.

    When I make changes to my .lbi files in DreamWeaver CS4 I and try to update them I am getting
       item Library\dreamweaver\themed_image.lbiE:\RCG\Web Sites\2011 RCG Working Web Site\Library\dreamweaver\themed_image.lbi contains an invalid path.
        item Library\dreamweaver\logo.lbiE:\RCG\Web Sites\2011 RCG Working Web Site\Library\dreamweaver\logo.lbi contains an invalid path.
        item Library\dreamweaver\icons.lbiE:\RCG\Web Sites\2011 RCG Working Web Site\Library\dreamweaver\icons.lbi contains an invalid path.
        item Library\dreamweaver\menu_top.lbiE:\RCG\Web Sites\2011 RCG Working Web Site\Library\dreamweaver\menu_top.lbi contains an invalid path.
        item Library\dreamweaver\menu_side.lbiE:\RCG\Web Sites\2011 RCG Working Web Site\Library\dreamweaver\menu_side.lbi contains an invalid path.
        item Library\dreamweaver\$_whats_new.lbiE:\RCG\Web Sites\2011 RCG Working Web Site\Library\dreamweaver\$_whats_new.lbi contains an invalid path.
      files examined: 136
      files updated: 0
      files which could not be updated: 0
    total time: (0:00:13)
    Here is the code in one of the files for my side menu.. I do not see what is wrong and was wondering if anyone could help. Thank you.
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <!--
      <div class="maincontainer">
            <table style="width: 100%" cellpadding="0" cellspacing="0">
                <tr>
                    <td>
                    <table style="width: 100%" cellpadding="0" cellspacing="0">
                        <tr>
                            <td class="headerleft"><h3>MainMenu</h3></td>
                            <td class="headerright"> </td>
                        </tr>
                    </table>
                    </td>
                </tr>
                <tr>
                    <td>
                    <table style="width: 100%" cellpadding="0" cellspacing="0">
                        <tr>
                            <td class="leftcolumn"></td>
                            <td class="maincontent">
    -->   
    <div class="maincontent">   
    <h3>MainMenu</h3>               
    <div class="bg">
    <!-- menu  -->
    <div id="ddsidemenubar" class="sidemenu">
    <ul>
    <li><a href="../../index.htm"             title="Home">                        <span>Home</span></a></li>
    <li><a href="../../catalog_opening.html"         title="Catalog"     rel="sub1">        <span>Catalog</span></a></li>
    <li><a href="../../services.htm"         title="Services"    rel="sub2">        <span>Services</span></a></li>
    <li><a href="../../photo_gallery.htm"     title="Photos">Gallery<span></span></a></li>
    <li><a href="../../sitemap.htm"         title="Search">                        <span>Search</span></a></li>
    </ul>
    </div>
    <script type="text/javascript">
    ddlevelsmenu.setup("ddsidemenubar", "sidebar") //ddlevelsmenu.setup("mainmenuid", "topbar|sidebar")
    </script>
    <!--Side Drop Down Menu 1 HTML-->
    <ul id="sub1" class="ddsubmenustyle sidesubmenu">
    <li><a href="../../catalog_opening.html">Senior Class T-Shirts</a>
      <ul>
        <li><a href="../../catalog_seniorclass.html">Page 1</a></li>
        <li><a href="../../catalog_seniorclass2.html">Page 2</a></li>
      </ul>
    </li>
    <li><a href="../../catalog_opening.html">School T-Shirts</a>
      <ul>
        <li><a href="../../catalog_school1.html">Page 1</a></li>
        <li><a href="../../catalog_school2.html">Page 2</a></li>
      </ul>
    </li>
    <li><a href="../../catalog_opening.html">Montana T-Shirts</a>
      <ul>
        <li><a href="../../catalog_montana1.html">Page 1</a></li>
        <li><a href="../../catalog_montana2.html">Page 2</a></li>
        <li><a href="../../catalog_montana3.html">Page 3</a></li>
        </ul>
    </li>
    <li><a href="../../catalog_misc.html">Misc T-Shirts</a>
      </li>
    </ul>
    <!--Side Drop Down Menu 2 HTML-->
    <ul id="sub2" class="ddsubmenustyle sidesubmenu">
    <li><a href="../../direct_to_garment.html">T-Shirt Printing</a> </li>
    <li><a href="../../computer_design.html">Computer Design</a> </li>
    <li><a href="../../signs.html">Signs</a> </li>
    <li><a href="../../vehicle_graphics_and_wraps.html">Vehicle Graphics/Wraps</a> </li>
    <li><a href="../../airbrush.html">Airbrush</a> </li>
    </ul>
    <!--Side Drop Down Menu 3 HTML-->
    <!-- end menu / do not edit beyond this line -->
    </div></div>
    <!--
                            </td>
                            <td class="rightcolumn"></td>
                        </tr>
                    </table>
                    </td>
                </tr>
                <tr>
                    <td>
                    <table style="width: 100%" cellpadding="0" cellspacing="0">
                        <tr>
                            <td class="bottomleft"> </td>
                            <td class="bottomright"> </td>
                        </tr>
                    </table>
                    </td>
                </tr>
            </table>
    </div>
    -->

    Are all of your pages that are linked to this on the same directory level?
    The ../../ in front of every link means "go up two directory levels". If there are no pages, or if some of the pages are not at that directory level, the links would be going to nothing.
    I don't use library items myself, so I'm not sure if that has anything to do with it, but the "bad path" in your error report leads me to think some of those paths (since they're the only ones in the code) could be pointing to the wrong locations.
    My response will also bump your question back to the top of the pile. Maybe someone else will have a good idea of what's actually happening.

  • Windows Media Player cannot play the file. The Player might not support the file type or might not support the codec that was used to compress the file

    Windows Media Player cannot play the file. The Player might not support the file type or might not support the codec that was used to compress the file
    How do I fix this?

    That would probably be a question best taken up in on a site for Windows support questions. Not knowing anything about the movie you're trying to play, all I can suggest is to confirm that the format of the movie you wish to play is supported in your version of WMP. If it isn't, you'll either need to convert the movie or use some other player software.
    Regards.

Maybe you are looking for