6233 not playing .wav files

i've purchased new 6233 and the firmware is 4.52 but its not playing .wav files, whereas one of my friend has the same phone with 3.70 firmware and its playing without n e problem.
n solutions about this.

Hello.
Only Series 60,80 and 90 phones running Symbian operating system are capable of playing WAV files. From what I know, Series 40 phones do not display this ability and will not be supported still in future revisions of the said platform.
Cheers.
The world might be a better place if you were I.

Similar Messages

  • Can not play wav file on envy touchsmart

    can not play wav files from my emails on my hp envy touchsmart. have tried to download other apps, but nothing is working. help!

    Hi terrylyn11,
    What media player apps have you tried to use to play these files? Are other music file formats playing ok?
    Please click the thumbs up button to say "Thanks!"
    Clicking "Accept as Solution" on a reply that solves your problem makes it easier for other people to find solutions.
    I am an HP employee.

  • Quicktime not playing .wav files

    I cannot get .wav files to play.
    I have installed Flip4Mac Beta for snow Leopard (twice) and even reinstalled Quicktime Player 7 just in case that would work since my Quicktime 10 (51) does not handle .wav files. This is a big problem.
    Is there a solution since I think it may be something with my upgrade to snow leopard and incompatibility issues and hopefully this is an issue being worked on by apple.

    "I have installed Flip4Mac Beta"
    BETA=buggy. Suggest that you post your concerns over on the Flip4Mac forums.
    There may be solutions regarding how to make their beta product work w/QT & Snow Leopard.

  • How do you make itunes not play wav files?

    I know how to make it play wav files but how do I remove it from the default player list? I want them to all play in Quicktime. I have done the right click, holt alt and press Always Open With... and also done the right click and specify it to open in Quicktime. I have done this on 3 different Macs with 2 different OSX versions. It will open in Quicktime that one time but then the next time I open a wav file it goes back to Quicktime.
    Anyone have any suggestions?

    It will open in Quicktime that one time but then the next time I open a wav file it goes back to Quicktime.
    Do you mean, "goes back to iTunes"?  "A wav file," or the same wav file you just changed?
    Did you select the additional option in Get Info's Open With window to, "Change all of this kind to open with Quicktime"?

  • Pre does not play WAV file when received as an attachment via email

    I get my office voicemails emailed to me as an attachment but when I click on the attachment it goes to open the file to play but then it says that there was an error playing the file. Do i have to change a setting? Please help. Thank you!
    Post relates to: Pre p100eww (Sprint)

    I spoke to palm support they say they are aware of the problem at this time the pre doesn't support the wav file for voice mail . It is very important to me and I have been using this feature on my blackberry and my palm 755p I don't under stand why they would release a phone and not have the needed software for it .

  • JMF Not playing wav files in Linux

    Hi all,
    I'm using the code below to play a simple wav file in Linux:
    ==
    import java.io.IOException;
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.media.ControllerEvent;
    import javax.media.ControllerListener;
    import javax.media.EndOfMediaEvent;
    import javax.media.Manager;
    import javax.media.MediaLocator;
    import javax.media.NoPlayerException;
    import javax.media.Player;
    * @author
    public class AudioTest implements ControllerListener {
        /** Creates a new instance of AudioTest */
        public AudioTest() {
        public static Object syncObject = new Object();
        public static void main(String args[]) throws InterruptedException {
            try {
                URL url = new URL("file", "", "/magichome/xruser/jmf/WindowsXPStartup.wav");
                String mediaFile = url.toExternalForm();
                System.out.println(mediaFile);
                MediaLocator mediaLocator = new MediaLocator(mediaFile);
                System.out.println(mediaLocator);
                if(mediaLocator != null) {
                    try {
                        AudioTest test = new AudioTest();
                        //Player player = Manager.createPlayer(mediaLocator);
                        Player player = Manager.createPlayer(url);
                        player.addControllerListener(test);
                        System.out.println(player);
                        player.start();
                        synchronized(syncObject) {
                            syncObject.wait();
                            player.stop();
                            player.close();
                            System.out.println("CLosed...");
                        Thread.sleep(10000);
                        System.exit(0);
                    } catch (NoPlayerException ex) {
                        ex.printStackTrace();
                    } catch (IOException ex) {
                        ex.printStackTrace();
                    } catch (Error err) {
                        err.printStackTrace();
                //com.sun.media.amovie.AMController@9fef6f
            } catch (MalformedURLException ex) {
                ex.printStackTrace();
        public void controllerUpdate(ControllerEvent event) {
            System.out.println(event);
            if (event instanceof EndOfMediaEvent) {
                synchronized(syncObject) {
                    syncObject.notify();
    }==
    But on running the above program with the following commands:
    /usr/java/j2sdk1.4.2_08/bin/javac -classpath /magichome/xruser/jmf/jmf.jar:./:/magichome/xruser/jmf/mediaplayer.jar:/magichome/xruser/jmf/multiplayer.jar:/magichome/xruser/jmf/sound.jar:customizer.jar AudioTest.java
    /usr/java/j2sdk1.4.2_08/bin/java -classpath /magichome/xruser/jmf/jmf.jar:./:/magichome/xruser/jmf/mediaplayer.jar:/magichome/xruser/jmf/multiplayer.jar:/magichome/xruser/jmf/sound.jar:customizer.jar AudioTest
    I get the following error:
    ==
    file:/magichome/xruser/jmf/WindowsXPStartup.wav
    file:/magichome/xruser/jmf/WindowsXPStartup.wav
    com.sun.media.content.unknown.Handler@1ee4648
    javax.media.TransitionEvent[source=com.sun.media.content.unknown.Handler@1ee4648,previous=Unrealized,current=Realizing,target=Started]
    javax.media.DurationUpdateEvent[source=com.sun.media.content.unknown.Handler@1ee4648,duration=javax.media.Time@1e8a1f6
    javax.media.RealizeCompleteEvent[source=com.sun.media.content.unknown.Handler@1ee4648,previous=Realizing,current=Realized,target=Started]
    javax.media.TransitionEvent[source=com.sun.media.content.unknown.Handler@1ee4648,previous=Realized,current=Prefetching,target=Started]
    Unable to handle format: LINEAR, 22050.0 Hz, 16-bit, Stereo, LittleEndian, Signed, 88200.0 frame rate, FrameSize=32 bits
    Failed to prefetch: com.sun.media.PlaybackEngine@91cee
    Error: Unable to prefetch com.sun.media.PlaybackEngine@91cee
    javax.media.ResourceUnavailableEvent[source=com.sun.media.content.unknown.Handler@1ee4648,message=Failed to prefetch: cannot open the audio device.]
    ==
    I'm unable to isolate the problem here. When I play the file with mplayer, it plays just fine. But with the code above, it just does not wish to play..
    Can someone please point out the error I am commiting.
    Thanks

    I'm using the code below to play a simple wav file in
    Linux:I'm running the performance pack under Win XP, here..
             try {
                 URL url = new URL("file", "",  "/magichome/xruser/jmf/WindowsXPStartup.wav");
    ...Is that a linear encoded, 16 bit, stereo sample
    recorded at 22050Hz sample rate? 4.81 seconds
    (424,644 bytes), content type audio.x_wav?
    The reason I ask is just that you do not mention if
    you'd tested on any other OS, and I found a very
    similarly named WAV of the above description on
    my system and tried it with your code - and in
    JMStudio.
    It ran flawlessly in both.
    But on running the above program ...
    I get the following error:...
    file:/magichome/xruser/jmf/WindowsXPStartup.wav
    file:/magichome/xruser/jmf/WindowsXPStartup.wav
    com.sun.media.content.unknown.Handler@1ee4648...
    Unable to handle format: LINEAR, 22050.0 Hz,
    16-bit, Stereo, LittleEndian, Signed, 88200.0 frame
    rate, FrameSize=32 bits...
    I'm unable to isolate the problem here. When I play
    the file with mplayer, What is 'mplayer'? The default media player
    of the OS?
    ..it plays just fine. But with
    the code above, it just does not wish to play..
    Can someone please point out the error I am
    commiting.I cannot tell what the problem is, sorry. Just
    thought I should check in and note there is
    nothing wrong with the code, and that WAV
    is sure understood by Windows based JMF.

  • Pure Music software player is not working with iTunes 10.4 and Lion 10.7 playing wav. files.

    Pure Music player from Channel D software will not work when playing wav. files after updating to Lion OS. I can open the application as usual but after playing one song it will not advance to the next track either on its own or manually. The scrolling track name goes dim and I cannot get the play button to respond. Has anyone else experienced this problem?
    Ron

    Thanks Limnos, but unfortunately the same error still remains.
    The disk was OK.  Permissions had errors along the lines of groups should be 0, is 80.  I repaired that.  Tried again to open, then reinstalled (new download again), but again the same problem.
    I checked permissions again and some of the 0-80 errors came again, but no clear reason from there I think
    Was also a SUID warning on ARDAgent but I see online that doesn't appear to be something abnormal.
    I tried reloading Lion but the installation came back with software appears to have been tampered with (I think the dmg file is gone as I couldn't find it).  I then went to email to report a problem so I could download again but of course that whole process doesn't work because itunes wont open.
    So Stuck
    if there is anything else I might be missing?

  • How to Play .wav files in Safari?

    Hi:
    I need a little help.
    I would like Safari to play wav files instead of downloading those file to my Downloads folder. Can this be done.
    Thanks,
    -AstraPoint

    Greetings,
    I would like Safari to play wav files instead of downloading those file to my Downloads folder.
    Can this be done?
    Maybe. First, what is the URL for a .wav file you're trying to play in Safari? I want to test this before I say whether or not it will work.

  • Play WAV files into the .jar

    Hello,
    I'm doing small application Java with Netbeans.
    I need is to play .wav file sounds are incorporated into the jar.
    I do not want to use external libraries or external sound files, etc.. I want to go with my .JAR to the office, home, etc ... just need the JAR to hear the sounds.
    I've created a folder "Sounds" in "src" and in that place I have my sounds. (Project / src / sounds). It's a way to incorporate a JAR file, or am I wrong?? Run independently of the sound files.
    At the time of reproducing the sound I do the following:
    Clip sonido = AudioSystem.getClip();
    File f = new File(getClass().getResource(/Sonidos/alarma.wav).toURI());
    sonido.open(AudioSystem.getAudioInputStream(f));
    sonido.start();
    If I run the program with netbeans, I play sounds, but which only transfer my .JAR to another computer, does not play ...
    Any ideas?
    Thank's.

    I don't understand, before I had done as you have written me, but did not work, but now it works.
    Problem solved. Thank's.
    Posting the code here:
    InputStream path = getClass().getResourceAsStream("/Sonidos/alarma.wav");
    try
    sonido = AudioSystem.getClip();
    sonido.open(AudioSystem.getAudioInputStream(path));
    sonido.start();
    }catch(Exception fail)
    System.out.println(fail);
    Edited by: 892291 on 19-oct-2011 10:37

  • Cmus doesn't play .wav files and pulseaudio isn't working properly

    The first problem I noticed was that Chromium was using about 90% of my CPU while I wasn't connected to the internet. So I deleted Chromium because I couldn't fix the problem any other way. After deleting Chromium the CPU problem was fixed but after checking htop again I noticed this message with -11 being in red:
    (http://pastie.org/4234521)
    I started using cmus and noticed that .wav files aren't playing anymore but I am not sure if that has anything to do with this issue. Cmus played .wav files just fine when I had Chromium however. Also, RAM is steadily increasing at about 700 MB which never happened before. I think maybe the problem with cmus and the RAM increase could be caused by pulseaudio not working properly?
    Also, when I run "pulseaudio" in the terminal I get this message in red:
    $ pulseaudio
    E: [pulseaudio] pid.c: Daemon already running.
    E: [pulseaudio] main.c: pa_pid_file_create() failed.
    Last edited by rg_arc (2012-07-10 23:56:41)

    I have stopped using cmus and I am currently using moc(Music On Console). I found out that for some reason pulseaudio is taking up alot of RAM.
    Here is a picture of what is going on in htop:
    (http://i48.tinypic.com/1217mtk.jpg)

  • [Solved] Thunderbird don't play *.wav files.

    Hi, I'm new on the forum. Thunderbird don't play *.wav file on new mail sound notification. How can I fix it? System is fully updated. Below there is some info:
    [marcin@archlinux ~]$ lspci | grep audio
    00:11.5 Multimedia audio controller: VIA Technologies, Inc. VT8233/A/8235/8237 AC97 Audio Controller (rev 50)
    [marcin@archlinux ~]$ lsb_release -a && uname -r
    LSB Version: n/a
    Distributor ID: Arch
    Description: Arch Linux
    Release: n/a
    Codename: n/a
    3.0-ARCH
    [root@archlinux marcin]# pacman -Qs thunderbird
    local/thunderbird 6.0-1
    Standalone Mail/News reader
    local/thunderbird-i18n-pl 6.0-1
    Polish language pack for Thunderbird
    Last edited by Fixxer (2011-08-29 19:16:12)

    Fixxer wrote:
    satanselbow wrote:Have you turned it on - or selected the correct sound file in Thunderbird -> Edit -> Preferences ?
    Yes, file is correct. Audacious plays it.
    oboedad55 wrote:I had to install "esound" form the AUR to get it to work.
    Built a package as the instruction says:
    https://wiki.archlinux.org/index.php/AU … g_packages
    I've installed the package:
    esound-0.2.41-2-i686.pkg.tar.xz
    Daemon was added to /etc/rc.conf and run from console:
    /etc/rc.d/esd start
    Here is my /etc/esd.conf file:
    [esd]
    # autospawning is not recommended, since it can't really be done
    # right. If you want your login session to be using a sound daemon,
    # you should start it from the session controller, not some random
    # app inside.
    auto_spawn=0
    #Linijka poniżej zhaszowana - dodanie opcji z PCLinuxOS 2011
    #spawn_options=-terminate -nobeeps -as 2
    spawn_options=-terminate -nobeeps
    #Linijka poniżej zhaszowana - dodanie opcji z PCLinuxOS 2011
    #spawn_wait_ms=100
    spawn_wait_ms=300
    # default options are used in spawned and non-spawned mode
    default_options=-as 1
    oboedad55
    Could you show your file /etc/esd.conf?
    [esd]
    # autospawning is not recommended, since it can't really be done
    # right. If you want your login session to be using a sound daemon,
    # you should start it from the session controller, not some random
    # app inside.
    auto_spawn=0
    spawn_options=-terminate -nobeeps -as 2
    spawn_wait_ms=100
    # default options are used in spawned and non-spawned mode
    default_options=
    FWIW, I'm using pulseaudio and I've done nothing else besides installing esound from the AUR.

  • I thought the Style 100 could play .wav files !!

    which is why I bought one!
    !!! Just deli'vered. I've tried all the suggestions in the forum messages. None work.
    I have used drag and drop into the music folder and the recordings folder. The files don't show up in the Zen folders although they are visible when I explore the Zen like a thumb dri've. What's up!!!
    Your specifications say it plays .wav files thiis is apparently incorrect information. Creative Centrale does not recognize .wav files either.
    Are you going to change the spec or provide support for playing .wav *as advertised?*
    Thanks

    Hi,
    There are many different kinds of compression formats for wav files. The ZEN Style 00 supports IMA-ADPCM compression. Please check the compression format of your wav files.

  • Blackberry 8330 - can't play wav files - Red X and "unknown error occured"

    I have a client that started having an issue with her blackberry after we moved to BES Express 5.02.  Her .wav file association on her computer was changed so she couldn't play .wav files on her PC.  Then she stated getting a red X on her phone when trying to listen to the Cisco unity voice mail messages that are attached to emails.   
    I was able to correct the issue on her PC by re-associating the .wav file with windows media player.   However on the blackberry, the .wav file still will not play.  Is there a file association section on a blackberry device?  If not what else might be the issue?   she is the only person having the issue.  I don't use a blackberry so i don't know the menu options very well.
    Thanks
    Steve.
    P.S.
    Oh, The phone was factory reset before being added to the new BES, Service books and IT policy Applied correctly.   I could pull the phoen and reset it again but I don't know if that would correct the issue. 

    Hi - I am now having this same exact problem on my Mac laptop.   I have many Breaking Bad, etc TV shows that I purchased through itunes & have watched over the years & now all of those, as well as, any new shows I purchase will not play on my laptop.    Just same as above person -- a black screen that appears to be playing movie (the timer is actually playing)  but no video or sound.    Shows / Movies all work fine on my home computer.  
    On my laptop it keeps saying .. "Not authorized to play .... & then says  "Sign into Itunes.. "   - but I  do sign out & sign  back in & still nothing happens.   Very annoying and frustrating as I  can ususlly figure things out with perserverence and trial & error. 

  • Safari on iPod Touch will not play WAV voicemails

    Our campus voicemail system is accessible through a web browser and plays back its audio in WAV format (using the GSM6.10 codec). If I use Safari or Firefox on OS X it plays the voicemail, but when I use Safari on the iPod Touch it tells me that it "cannot play movie: Movie could not be played."
    Wouldn't it make more sense for a mobile platform to support as many of the .WAV codecs as possible, especially if the desktop OS already does?

    I worked with another person a week or so ago and the issue is the limited mobile Safari version support for playback.
    However, the touch MAIL program has no problems playing WAV files.
    What I suggested the OP do was set up a Gmail account and set their touch up to download that Gmail account. They then forwarded the email with voice mail to their Gmail account and were able to play it back.
    See http://discussions.apple.com/thread.jspa?messageID=9788001

  • DVD Player plays DVDs but will not play VIDEO_TS files from my hard drive

    When logged into my home account DVD Player plays DVDs but will not play VIDEO_TS files that are on my hard drive. I get an error message: "there was a problem opening the media. Media type is not supported." When logged in as "root" DVD player does play these same files. Also, when logged in to my home account, I can play these same files in VLC.

    Go this this thread for more details:
    http://discussions.apple.com/thread.jspa?threadID=1075814
    But the gist of the fix is to delete or rename "~/Library/Preferences/com.apple.DVDPlayer.plist" and let the DVD Player build a new one. It seems that this is caused by a migrated PPC preference that borks DVD Player 5 on Intel Macs, which is what just happened to me. Hope this helps.

Maybe you are looking for

  • Secure link to itunes store failed windows 7

    I have internet access as I just finished downloading and installing iTunes but I cannot get to the store through it

  • ITunes library on an external hard drive - does the HD need to be connected?

    Hi, I want to move my iTunes library from my windows laptop to an external hard drive to free up space. I've read up about how to do it, but the one thing that i still cant figure out is whether my hard drive needs to be continually connected for iTu

  • Is it possible to introduce a 60s delay in the encoding process?

    I have what seems to be a fairly unique situation to deal with.  I am successfully streaming "LIVE" using FLME to an FMS server.  Currently the buffer on the FMS is set to 30s which means that our viewers have a native 30s delay on the live action. 

  • Dashboard widgets on Thunderbolt?

    Is there a way to display Dashboard widgets on Thunderbolt Desktop? I did find a solution to permanently move Dashboard widgets to Desktop, but this means that when I use my MacBookPro in stand-alone mode, the widgets take up too much space and I hav

  • External monitor on standby not recognised properly

    I've MacBook Pro 15'' (late 2011) and I've attached an external monitor Samsung SyncMaster 2494HM using Mini DisplayPort to HDMI Adapter cable. After starting up my mac and the external monitor is on standby (not switched off), both screens go blank