How to play audio CDs in-app music?

How to play audio CDs in-app music?

Hello

The music app does not support playback of CD audio.  To read your CD, you can use Windows Media Player.

You can also use Windows Media Player to rip or copy the music from the CD to your hard drive and then play them in the application music.  You can find the steps to rip a CD here.

Tags: Windows

Similar Questions

  • How to play audio through the headphones and computer speakers, at the same time.

    Hey I just need to know how to play sounds through the headphones and speakers. Help

    Depends on your audio device.

    If its edge, while normally when you plug the headset switch will cut off the speakers.

    If you have a USB or Firewire pro device you can listen to your headphones as the signal played through your speakers.

    See you soon,.
    Jerry

  • How to play audio files, one after the other?

    Hi, I try to create an application that tries to read audio files a few one after the other. I've created a loop for playing audio files. But only the first track is played and the second song is playing only about 5 seconds while the rest do not get played at all and the two files that have played, pieces overlap, which is not supposed to be. Can you guys help me? I need urgent assistance that I need to finish it tonight.

    Here are my codes I created for the application:

    package mypackage;
    
    import javax.microedition.media.Manager;
    import javax.microedition.media.MediaException;
    import javax.microedition.media.Player;
    import java.lang.Class;
    import javax.microedition.rms.RecordStore;
    import java.io.InputStream;
    import java.io.ByteArrayInputStream;
    import net.rim.device.api.media.protocol.ByteArrayInputStreamDataSource;
    import net.rim.device.api.system.*;
    import net.rim.device.api.ui.*;
    import net.rim.device.api.ui.component.*;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.extension.container.*;
    import net.rim.device.api.ui.UiApplication;
    import java.io.IOException;
    
    public class PlayMedia extends UiApplication{
        /**
         * Entry point for application
         * @param args Command line arguments (not used)
         */
        public static void main(String[] args){
    
            PlayMedia theApp = new PlayMedia();
            theApp.enterEventDispatcher();
        }
    
        public PlayMedia()
        {
    
            pushScreen(new PlayMediaScreen());
    
        }
        /**
         * A class extending the MainScreen class, which provides default standard
         * behavior for BlackBerry GUI applications.
         */
        final class PlayMediaScreen extends MainScreen
        {
            /**
             * Creates a new PlayMediaScreen object
             */
            public Player p = null;
            PlayMediaScreen()
            {
                String test3 = "Test(2seconds).mp3";
                String test5 = "Test(2seconds)2.mp3";
                //String test6 = "Test(2seconds)3.mp3";
                String test4 = "Test(2seconds)4.mp3";
                String test1 = "blind_willie.mp3";
                String test2 = "blind_willie.mp3";
                String mp3 = null;
    
                for(int i=0;i<5;i++){
                    if(i == 0){
                        mp3 = test1;
                    }
                    else if(i == 1){
                        mp3 = test2;
                    }
                    else if(i == 2){
                        mp3 = test3;
                    }
                    else if(i == 3){
                        mp3 = test4;
                    }
                    else if(i == 4){
                        mp3 = test5;
                    }
                    //testing
                    System.out.println("Song is "+ mp3 + "???????????????????????????????????????");
    
                    play(mp3);
    
                    System.out.println("Song is "+ mp3 + "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
                }
            }
    
            private void play(String mp3){
    
            InputStream stream = (InputStream)this.getClass().getResourceAsStream("/" + mp3);
    
                try {
                    //p = Manager.createPlayer(source);
                    p = Manager.createPlayer(stream, "audio/mpeg");
                    p.realize();
                    p.prefetch();
    
                    //testing
                    System.out.println("Creating Players!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
                    System.out.println("The mp3 is " + mp3 + "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
    
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
    
                    //testing
                    System.out.println("IO Exeception!!!!!!!!!!!!!!!!1 " + e);
    
                    //testing
                    System.out.println(p);
    
                } catch (MediaException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
    
                //testing
                System.out.println("Media Exeception!!!!!!!!!!!!!!!!1" + e);
    
                //testing
                System.out.println(p);
                }
                /*
                 * Best practice is to invoke realize(), then prefetch(), then start().
                 * Following this sequence reduces delays in starting media playback.
                 *
                 * Invoking start() as shown below will cause start() to invoke  prefetch(0),
                 * which invokes realize() before media playback is started.
                 */
                try {
                    p.start();
                } catch (MediaException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
    
                    //testing
                    System.out.println("Media Exeception for starting!!!!!!!!!!!!!!!!1" + e);
    
                    //testing
                    System.out.println(p);
                }
                /*
                try {
                    p.stop();
                } catch (MediaException e) {
                // TODO Auto-generated catch block
                    e.printStackTrace();
                }
                p.deallocate();
                p.close();
                */
    
            }
        }
    }
    

    Please help me! Thanks in advance!

    What you will do, is add the PlayerListener and / if you have in your loop code would go in the treatment of the END_OF_MEDIA event. Once that noise has stopped you will start the next sound and add the listener of player.

    //Declarations
    PlayerListener pListen;
    String mp3 = "";
    
    ..........
    ..........
    
    pListen = new PlayerListener(){
       public void playerUpdate(Player player, String event, Object eventData) {
          if (event.equals(PlayerListener.END_OF_MEDIA)) {
             if( mp3.equals(test1) ) mp3 = test;
             else if( mp3.equals(test2) ) mp3 = test3;
             else if( mp3.equals(test3) ) mp3 = test4;
             .........
    
             InputStream stream = (InputStream)this.getClass().getResourceAsStream("/" + mp3);
             p = Manager.createPlayer(stream, "audio/mpeg");
             p.realize();
             p.prefetch();
             p.addPlayerListener(pListen);
             p.start();
          }
       }
    }
    
    InputStream stream = (InputStream)this.getClass().getResourceAsStream("/" + mp3);
    p = Manager.createPlayer(stream, "audio/mpeg");
    p.realize();
    p.prefetch();
    p.addPlayerListener(pListen);
    p.start();
    

    So, add the try-catch blocks.

  • How to play the games offline apps

    Hello

    How can I play games to down loaded Xbox app in offline mode?

    Thank you

    Hello

    It is not a community forum for Xbox.

    The Xbox resources:

    Xbox forums: http://www.xbox.com/en-US/forums

    Main problems Xbox: http://support.xbox.com/en-US/browse?product=xbox-360

    Xbox contact us: http://support.xbox.com/en-US/contact-us

    Don

  • How to play sequence is determined for music!

    Hey guys, I have already spent a lot of time trying to divine from the reading order of podcasts and books audio here.  Yesterday I ran into a problem, you place your order of music.  I have a few files named as follows:

    Artist-Album - CD1_Track_01.mp3
    Artist-Album - CD1_Track_02.mp3
    ...
    Artist-Album - CD2_Track_01.mp3
    Artist-Album - CD2_Track_02.mp3

    When I download, they appear like this:

    CD1 Track 1
    CD2 track 1
    CD1 Track 2
    CD2 track 2

    Quite annoying.  I tried to change the "CD" and "Track" difference etc. - not A and B.  I tried to change the tag difference - no track.  To make a long story short, it appears the clip completely ignores all tags to determine the order!  Although she uses the title/artist/album tags to create the folders.  Instead, it uses the name of the command file.

    Specifically, it seems to interpret the last number to the right of the file name as the track number.  What explains the above.  So I worked around it by having my download program (amarok) get the the track number of the tag and add file name:

    CD1_Track_1 - 01.mp3
    CD1_Track_2 - 02.mp3
    CD2_Track_1 - 03.mp3
    CD2_Track_2 - 04.mp3

    Sorry if this is obvious to everyone, but it was not to me-hope it helps someone.  I expect the device to use the track tag in the file to determine the order, but this means that perhaps it would be necessary to read all the headers file instead of looking at the file name.  Moral of the story: the number of track at the end of the file name.

    No, you shouldn't have to change the name of the file to all the.  The player will only use the file name for the sort if the track tags and title are missing.

    Make sure your artist, Album, track, and title tags are correct and make sure that you use ID3v2.3 ISO format labels.

    I guess that your tag information is missing/incorrect or is not in the format ISO ID3v2.3.

  • Satellite A110-162 - cannot play audio CDs

    My DVD-ROM cannot read an audio CD with data or not. If I put and audio CD with audio games or data on it always opens as if she was a Virgin there is

    Hey,.

    Have you tried to remove the upper and lower filters?
    http://support.Microsoft.com/kb/314060
    ?

  • How to disable the shuffle in-app music?

    There is no shuffle button more to switch or repeat.

    When you see the album, there is a bar downstairs that has play/pause on three points, the name of the song in the middle with the artist and album info below and the far left to the far right. Tap the song title in the lower bar. It will open up the info for this piece. And on the bottom of the info of the song, you will see the shuffle button that we all know.

  • Windows Media Player-how add ripped audio files in the music folder

    connection of windows media player and my music

    I want all the files I have on media player to be in my music. My old computer had this set up automatic when I purchaced my computer. Basiclly, I use my muic much and want all my music files there. When I copy a CD with media player it dosent appear in my music. What should I do to make this happen?

    Tools menu (on the keyboard ALT + T) - extract Options and all of the folder on the tab.
     
    --
    ..
    --
    "masterstratman" wrote in message
    News: 4da48cb1-7cb9-4a01-b986-1f1ce4cf262f...
    > I want all the files I have on media player to be in my music. My
    > previous computer had this set up automatic when I purchaced my computer.
    > Basiclly, I use my muic much and want all my music files there. When I rip
    > a CD with media player it dosent appear in my music. What should I do
    > getting there?
    >
    >
    >
     
     
  • Used to play audio CDs

    I have a new computer from P6130f, and I have some audio cd problem doing hear in my car cd player I have try all the format. Mpe etc. and nada wav AIFF

    audio cd works on my old box bumb, computer but not on my car cd player, why is this? Sombody can help me.

    The CD player in your parts .cda format. This is the normal format for store bought CD.

  • plays dvd video plays do not only audio CDs

    having a problem with the playback of dvd video on my laptop I can't play audio CDs, it works fine but when I want to put a movie dvd or dvd video, it does not play I tried different thought of dvd that was the problem, but all video DVDs do not work please help

    Hi Daniela2727,

    What happens when you try to play a DVD movie? He asks to insert a disk? He asks a decoder?

    You have PowerDVD, or something like that installed on your computer? If this is not the case, there is a free program called VLC Media Player I recommend (and use it myself).

  • iPhone 7 will not play audio via the USB port on the car.

    When I plug my iPhone USB port 7 more in my car (15 Jeep Grand Cherokee), the artist/song/podcast information appears on the screen, but the sound plays through the speakers of the phone.  I have confirmed that my settings are all the same as they were on my 6s, who played without any problems via the USB connection.  Bluetooth streaming works fine - no problems at all.  Any ideas, or is this a problem similar to that people have with CarPlay?

    Welcome to Apple Support communities, kevo.mac!

    Congratulations on your new iPhone 7 more! I see that you connect with your Jeep Grand Cherokee using the USB port. Everything seems to work fine, except that the music plays through the phone instead. I'll be happy to help you to get this working.

    Help to connect your iPhone, iPad or iPod touch with your car radio

    If you are using USB playback

    Restart your iOS device and your car.
    Connect your iOS device to another stereo USB port (if you have one).
    Try another USB cable.
    Update your iOS device.
    Install the updates to the firmware of your car radio.
    Test of audio playback from a different application. If you can not play audio from a specific third party application, contact the developer of the app for help.
    If you can not play audio from an app Apple, contact Apple technical support.

    Enjoy your weekend!

  • CD/DVD Rom will play audio CD but not DVD

    Hello

    I am at a loss :( The CD/DVD-rom (ID: HL-DT-ST DVDRAM GSA-T50L) in my refuses to Asus computer (Vista 64 Home Premium) laptop to play DVDs now but will read audio CDs, I put in the drive without problem. When I put a DVD in the drive, it will make clicking sounds and then turn and then turn down and then do nothing at all. I have scoured the internet looking for a solution to this problem and have done everything I could find a solution (drivers are up to date, checked registry and was fine, checked reading auto and put all ask me every time, ran auto fix - it and he just says cannot read the media type, uninstalled and reinstalled the drive) etc.).

    The drive is displayed in Explorer, but when I double click top with a DVD, nothing happens. I even downloaded the new codecs and I still have this problem. The problem started shortly after I have updated to SP2, and I've even uninstalled SP2 and nothing. I tried system restore and still no dice. I do not say that this problem has nothing to do with the installation of SP2 or anything, but the drive has worked perfectly well before that date. I initially thought that maybe the drive went wrong and think always that after trying all the solutions that I found, but a bad combo player would still be able to play audio CDs without problem?

    Any help on this would be much appreciated...

    Thank you

    Hello

    Update the BIOS can not help if the drive had worked for a good period of time however it
    is definitely worth it.

    You have disk problem as the CD/DVD is actually 4 discs in 1 case (burn CD & DVD and CD and DVD read).
    Therefore, it is not unusual for 1 or 2 rooms with not so work that others do it properly.

    Several good info here:
    http://Club.myce.com/

    Notes on the troubleshooting and repair of readers of compact disks and CD-ROM Drives
    http://www.repairfaq.org/repair/F_cdfaq7.html#CDFAQ_014

    -----------------------------------------------------------------------

    You did a large part of this however please start at the top and work downwards as it is often the total process
    to solve the problem.

    Try this - Panel - Device Manager - CD/DVD - double-click on the device - driver tab - click
    Update the drivers (this will probably do nothing) - then RIGHT click the drive - UNINSTALL - REBOOT
    This will refresh the default driver stack. Even if the reader does not appear to continue below.

    Then, work your way through these - don't forget the drive might be bad, could be a loose cable or
    slight corrosion on the contacts (usually for a laptop) and other issues.

    Your CD or DVD drive is missing or is not recognized by Windows or other programs
    http://support.microsoft.com/kb/314060 - a Mr Fixit

    The CD drive or the DVD drive does not work as expected on a computer that you upgraded to Windows Vista
    http://support.Microsoft.com/kb/929461

    When you insert a CD or a DVD, Windows Vista may not recognize the disc
    http://support.Microsoft.com/kb/939052

    Your CD or DVD drive cannot read or write media - A Mr Fixit
    http://support.Microsoft.com/GP/cd_dvd_drive_problems

    CD/DVD drive does not appear in Windows Vista, or you receive this error during the installation of Windows Vista after booting from the DVD (AHCI)
    http://support.Microsoft.com/kb/952951
    Drive CD - R or CD - RW Drive is not recognized as a recordable device
    http://support.Microsoft.com/kb/316529/

    Hardware devices not detected or not working - A Mr Fixit
    http://support.Microsoft.com/GP/hardware_device_problems

    Another possibility is that the cables are loose. Remove ALL power, then make sure that the cables in both
    ends. Remove and replace, do not just tight. For laptops, you can often clean power and
    contacts data with a pencil eraser.

    ----------------------------------------------------------------

    You have disk problems as the CD/DVD is actually 4 discs in 1 case (CD & DVD burning and)
    Playback of CD and DVD). Therefore, it is not unusual for 1 or 2 rooms with not so work that others do it properly.

    Did you follow the Troubleshooting Guide for the reader who still does not work? There are some registry entries
    that the troubleshooter does not, and those who "could" be the cause.

    Check with your system manufacturer and a device for possible firmware updates and good
    Your player registry entries.

    Here are the keys in my opinion, are those in question - for the reader of CD/DVD subkeys of course that he will be
    other subkeys in these keys. Be sure to ask specific keys involved as well as the parameters.

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\IDE

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Hardware Profiles\0001\System\CurrentControlSet\Enum\IDE

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\ {4D36E965-E325-11CE-BFC1-08002BE10318}

    -----------------------------------------------------------------------

    You can probably find more info here and maybe even registry settings correct for your CD/DVD drive
    a person with the same model.

    Forums - a lot of expert real help
    http://Club.myce.com/

    CD/DVD units
    http://www.myce.com/storage/

    Hope these helps.
    Rob - bicycle - Mark Twain said it is good.

  • How can I play audio books and music to the same list of reading, in the same app on my iPhone?

    I don't really know where posting this because it applies to music and audiobooks and iTunes, but this corner of the support community seems most likely to be read by people with similar problems.

    I've got playlists in iTunes that are a mixture of Media type = Audiobook and Media type = music. In iTunes, they are in the same playlist, and I want to stay in the same playlist - they are language courses. But on my iPhone, digital audio books disappear from music and appear in iBooks (and in a book audio browser, the app I use audio books). It's the same playlist is now not only in two different playlists, but in totally different applications.

    Is there a way to play these files from the same application on my iPhone, rather than having spread them over two applications? I guess the most likely option is an application that includes all the audio files on the iPhone, not only music and audio books not only. Such an application exist?

    (Yes, I could theoretically change all in the music, or any audio book, but many of them have four-digit numbers, and if I change those files the track numbers will disappear and the playlists will be totally screwed.)

    Thanks in advance.

    Want very it is a third party application that can play audio books and music - particularly iTunes purchases items. You can certainly check the app store.

    But yes, the unit and the apps work as expected.

  • How can I access the 'now playing' when first opening the music app?

    How can I access the 'now playing' when first opening the music app? There is no tab or option like in previous iOS, would be in the upper right

    When the music is playing, slide up from the bottom of the home screen to see the center of control and current reading is also there.

  • How do I synchronize downloaded audio CDs on iPhone to computer library.

    I downloaded successfully from audio CDs in my iTunes (Windows) library on my laptop. When I back up and restore my iPhone with my laptop library (I buy most of my music with my iPhone) everything changes except the CD I downloaded does not download on my phone. I hope someone can it tell me how to do this job, I have so MUCH of CD I want to download and are available on my phone. I can not quite myself reconcile to buy all this music once again.  Any help would be greatly appreciated.

    Thank you

    You have selected to sync music?

    Is there anything different about syncing iTunes purchases or imported CD on your iPhone.

Maybe you are looking for