Songs won't start at the beginning!

Just got a brand new ipod, and am having a huge problem with songs starting in the middle of the song. Also if I play a few seconds of one song, then skip to the next, and then go back to the original song, it WILL NOT start at the beginning-keeps going to back to wherever it stopped playing! It still does this if I turn it off and back on. Nothing seems to work. Anyone know why?

Hello msjazzer,
And welcome to Apple Discussions!
Have you made sure your tracks' Start and Stop time have not been altered within iTunes? To do this locate the tracks you are having issues with. From there, highlight them, right -> click on them and choose "Get Info" from the shortcut pop up menu. When the window pops up, head over to the Options tab. First make sure the Start time is set to the beginning of the song and the Stop time is set to the end.
Also make sure the "remember playback position" option is not ticked as well from under this same tab. If you make any changes hit OK and sync the updated changes to your iPod.
Otherwise, perhaps you could take a look at this Apple support document.
http://support.apple.com/kb/TA26488
B-rock

Similar Messages

  • Imovie song does not start at the beginning after I edited the duration of the clip

    my imovie song does not start at the begining after I edited the duration of my clips. The audio clip now starts in the middle of the song. This is occuring with the second song in my video. How do I adjust the audio to start at the beginning of the song.

    For pop ups. From your Safari menu bar click Safari > Preferences then select the Security tab.
    Select:  Block pop-up windows
    safari starts always with top page even I have apple.com as a starting window
    Back to Safari > Preferences. This time select the General tab. You can reset your homepage from there.
    history its not saving or at least not showing when i press the thingy that looks like a little book on the tools bar
    That icon represents your Bookmarks not history.
    To view history, from your Safari menu bar click History > Show History
    Or Option + Command + 2 on your keyboard.

  • Downloaded songs don't start at the beginning of the song, why?

    the songs i bought from itunes don't start at the beginning of the song,  it's just the preview clip.

    Been having the same problems myself. And I don't know about you but sometimes it'll take a while to get it to actually play the first song.

  • Songs don't start at the beginning.

    Greetings,
    Recently I have found that my device will start playing the next song 10seconds into the song as opposed to starting at the beginning. My device is probably two years old now, but has had pretty good care. Any suggestions on why it may be doing this? Any suggestions on what needs to be done?

    Been having the same problems myself. And I don't know about you but sometimes it'll take a while to get it to actually play the first song.

  • AudioInputStream won't start from the beginning

    I'm not sure if this is normal or not, but here's a weird the situation. I have a number of audio files that I play together. Nothing complicated.
        public void playAudio() {
            try{
                File soundFile_1 = new File("SoundFile1.wav");
                File soundFile_2 = new File("SoundFile2.wav");
                File soundFile_3 = new File("SoundFile3.wav");
                audioInputStream_1 = AudioSystem.getAudioInputStream(soundFile_1);
                audioInputStream_2 = AudioSystem.getAudioInputStream(soundFile_2);
                audioInputStream_3 = AudioSystem.getAudioInputStream(soundFile_3);
                audioFormat_1 = audioInputStream_1.getFormat();
                audioFormat_2 = audioInputStream_2.getFormat();
                audioFormat_3 = audioInputStream_3.getFormat();
                DataLine.Info dataLineInfo_1 = new DataLine.Info(SourceDataLine.class,audioFormat_1);
                DataLine.Info dataLineInfo_2 = new DataLine.Info(SourceDataLine.class,audioFormat_2);
                DataLine.Info dataLineInfo_3 = new DataLine.Info(SourceDataLine.class,audioFormat_3);
                sourceDataLine_1 = (SourceDataLine) AudioSystem.getLine(dataLineInfo_1);
                sourceDataLine_2 = (SourceDataLine) AudioSystem.getLine(dataLineInfo_2);
                sourceDataLine_3 = (SourceDataLine) AudioSystem.getLine(dataLineInfo_3);
                new PlayThread().start();
            } catch (Exception e) {
                e.printStackTrace();
                System.exit(0);
        class PlayThread extends Thread{
            byte tempBuffer_1[] = new byte[100000];
            byte tempBuffer_2[] = new byte[100000];
            byte tempBuffer_3[] = new byte[100000];
            @Override
            public void run(){
                try{
                    sourceDataLine_1.open(audioFormat_1);
                    sourceDataLine_2.open(audioFormat_2);
                    sourceDataLine_3.open(audioFormat_3);
                    sourceDataLine_1.start();
                    sourceDataLine_2.start();
                    sourceDataLine_3.start();
                    int nBytesRead;
                    while(((nBytesRead = audioInputStream_1.read(tempBuffer_1,0,tempBuffer_1.length)) != -1) &&
                          ((nBytesRead = audioInputStream_2.read(tempBuffer_2,0,tempBuffer_2.length)) != -1) &&
                          ((nBytesRead = audioInputStream_3.read(tempBuffer_3,0,tempBuffer_3.length)) != -1) &&
                          (stopPlayback == false)) {
                        if(nBytesRead > 0){
                            sourceDataLine_1.write(tempBuffer_1, 0, nBytesRead);
                            sourceDataLine_2.write(tempBuffer_2, 0, nBytesRead);
                            sourceDataLine_3.write(tempBuffer_3, 0, nBytesRead);
                    sourceDataLine_1.drain();
                    sourceDataLine_2.drain();
                    sourceDataLine_3.drain();
                    sourceDataLine_1.close();
                    sourceDataLine_2.close();
                    sourceDataLine_3.close();
                    stopPlayback = false;
                } catch (Exception e) {
                    e.printStackTrace();
                    System.exit(0);
        }I also have a method that combines the three audio files into one. I usually call this method after having played the files for a short time.
        public void saveAudio() {
            saveList.add(audioInputStream_1);
            saveList.add(audioInputStream_2);
            saveList.add(audioInputStream_3);
            saveMixAIS = new MixingFloatAudioInputStream(audioFormat_1, saveList);
            File saveFile = new File("SaveMix.wav");
            try {
                AudioSystem.write(saveMixAIS, AudioFileFormat.Type.WAVE, saveFile);
         } catch (IOException e) {
                e.printStackTrace();
    } Interesting enough, this code doesn't seem to combine the three audio files properly. What seems to happen is that the combined file starts at the location where I stopped playing. In order to get the files to start from the very beginning, I need to re-initialize the AudioInputStream.
        public void saveAudio() {
            try{
                File soundFile_1 = new File("SoundFile1.wav");
                File soundFile_2 = new File("SoundFile2.wav");
                File soundFile_3 = new File("SoundFile3.wav");
                audioInputStream_1 = AudioSystem.getAudioInputStream(soundFile_1);
                audioInputStream_2 = AudioSystem.getAudioInputStream(soundFile_2);
                audioInputStream_3 = AudioSystem.getAudioInputStream(soundFile_3);
            } catch (Exception e) {
                    e.printStackTrace();
                    System.exit(0);
            saveList.add(audioInputStream_1);
            saveList.add(audioInputStream_2);
            saveList.add(audioInputStream_3);
            saveMixAIS = new MixingFloatAudioInputStream(audioFormat_1, saveList);
            File saveFile = new File("SaveMix.wav");
            try {
                AudioSystem.write(saveMixAIS, AudioFileFormat.Type.WAVE, saveFile);
         } catch (IOException e) {
                e.printStackTrace();
    } Is this normal?

    mohogany wrote:
    That definitely makes sense.
    I was under the impression that the AudioInputStream never loses the data it has read and that the AudioSystem.write method always starts from the beginning of this AudioInputStream. I need to stop treating the AudioInputStream like an array and instead treat it more like fresh water.Definately.
    AudioInputStream doesn't actually have anything in it...it's actually just a wrapper. Whenever you call read on it, it just reads whatever it's wrapping around, and returns the result. This is why it can contain both live data being recorded or file data or a network stream or...
    In this case, it is reading from a BinaryFile. Everytime you call read, it increments the file position... and it doesn't reset the file position when you call AudioSystem.write...

  • Keynote kept crashing.  Won't start from the beginning.  Help!

    The keynote kept crashing.  I went to the website just now, but when I try to watch, I can't get back to the beginning, which I missed.  The only options are "watch live" and "start from pause," and neither of those is what I need to do.

    As we can't see what your doing, provide some details,  what website is this, did you create the file, is it a Keynote or Quicklime or PDF file?

  • My Playhead thing won't start at the beginning.

    In every project when i hit play it starts in the middle of the song? :{

    If Cycle is activated, the playback starts at the cycle start point. You might have a Marquee selection, which might trigger this specific behavior, if you set up the play button that way. After a long clock on the play button you'll see this:
    Deselect "Play marquee Selection" and let us know, if this cures your issue.
    Best,
    DaCaptain

  • Songs do not start at the beginning

    Recently I have noticed that my iPod Touch (2G) is randomly skipping the beginning of every song. In other words, when a song begins, it'll begin 5 seconds, 10 seconds and even 40 seconds into a song. I don't know what could be causing this. Does anyone have any ideas? I've already rebooted my iPod, but that did not help.

    Hi Egidio,
    Try to Get Info tracks you are seeing this issue on in iTunes. Is "Remember playback position" checked?
    This option will cause iTunes and the iPod to resume playing the track from where stopped, as described here: http://support.apple.com/kb/TA23496
    Jason

  • ATV3 plays wrong song and has gap at the beginning

    Hi there,
    just got my ATV3 exchanged, because the old new one has got this media-library-connection-error, however with the new one I am experiencing a strange behaviour via WLAN and via Ethernet.
    Whenever I stream music and skip songs manually playback will start immediately from the beginning of each song.
    Playing playlists or entire albums causes a freeze at the beginning of a new song and playback starts between 3 or 6 seconds later, from this length of gap on in the song, so not starting at the beginning. Often it plays a different track than the one displayed (most of the time the next in sequence).
    Anybody else experiencing this?
    Thanks for your help,
    Andreas

    Solved it by turning homesharing off an on again!

  • All of my songs now last for one minute thrifty seconds. Most start at the beginning and stop at 90 seconds, a few start in the middle - but total play time is always 1:30. What's wrong?

    All of my songs , when played, now last for exactly one minute thirty seconds. Most start from the beginning and cut off at 90 seconds, some start in the middle. What's wrong?

    It appears that iOS 7.1 fixed this.

  • Music Videos Do Not Start At The Beginning

    Hi
    I have transferred about 8 music videos onto my ipod but they dont start at the beginning - they start about 30 secs into the song and i have to skip back to see the start. Is there a setting that i have missed that would solve this?
    Any help would be appreciated.
    Dell   Windows XP  

    Highlight the video, do a "Get Info" (right click to see it) and under the options tab check and see if the start time is checked and set to 30 seconds. If so, deselect it to play from the beginning. Also check and see if the "remember playback position" box is checked which will start the selection at the last place you left off (useful for audio books, long podcasts, etc. Not so much for music and short videos).
    Patrick

  • After reinstalling game, the achievements from Game Center doesn't uploaded to the game and starts from the beginning . All the achievements are seen in the Game Center . How could I upload the last progress into the game?

    After reinstalling game, the achievements from Game Center doesn't uploaded to the game and starts from the beginning . All the achievements are seen in the Game Center . How could I upload the last progress into the game?

    Hello there, Elena Lyubina.
    The following Knowledge Base article offers up some great steps for troubleshooting issues with an application not functioning as expected:
    iOS: An app you installed unexpectedly quits, stops responding, or won’t open
    http://support.apple.com/kb/ts1702
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Video doesn't start from the beginning

    Please tell me there is a setting on the iPod classic to always start a video from the beginning of the video??!?!?! I am using the iPod classic for video projection.
    E.g.: I play video #1 until, say, 3:00. I select menu and go to another video or a song, a photo, whatever. I go back to video #1 and it starts at 3:00! WHY?
    I want iPod Classic videos to ALWAYS start from the beginning.
    Please tell me there is a setting for this.
    thank you

    I have good news for you, (compared to your other post!).
    Select the video in iTunes and click on *File/Get Info* and look on the Options tab. Turn off the tick in *Remember playback position.* You can bulk select some or all your videos to do this.
    Phil

  • HT1510 Is there a way to get the IPod Shuffle 3rd generation to go to the beginning of the playlist/music so I can go on the "Play In Order" mode and have it start from the beginning.

    Is there a way to get the IPod Shuffle 3rd generation to go to the beginning of the playlist/music so I can go on the "Play In Order" mode and have it start from the beginning.

    gakansas wrote:
    It has some songs I would like to keep
    There is no legal way to do this-  You would need to be using the same AppleID (account)
    As far as deleting the songs, in a situation like this, you should restore the iPod which will delete the songs as well as allow you to sync your own music.
    For instructions on how to delete/add songs  it's best to check the manual:
    http://support.apple.com/manuals/#ipod
    As far as restoring, you didn't mention what model you are using but just choose your model from here (they have step by step instructions):
    http://www.apple.com/support/ipod/

  • I have an iPhone5 16 gb and a 120 gb iPod. All my songs won't fit on the iPhone of course. How can I just get some of them on the iPhone? I want to keep all my music on the iPod. I am VERY new to all this so be gentle and thanks.

    I have an iPhone5, 16 gb and a 120 gb iPod. All my songs won't fit on the iPhone of course. How can I just get some of them on the iPhone? I want to keep all my music on the iPod, but just want SOME of my music on the iphone. I am VERY new to all this so be gentle and thanks.

    You Sync the Music you want on the Phone via iTunes on your computer.
    See here  >  http://support.apple.com/kb/HT1386
    From Here  >  http://www.apple.com/support/iphone/syncing/

Maybe you are looking for

  • VAT Calculation on Sales Orders

    Hi All, Please someone tell me how to make the VAT of the material show on the Sales Order Smartform. Thank You

  • CO-PA, is credit management suppose to block orders from posting to CO-PA?

    We are currently using CO-PA to track the $ amount of sales orders that were booked for a particular date range, and it will show the sales order created or changed and the $ amount that was added or taken away from the bookings for that day.  This r

  • Why is my creative cloud app on windows 8.1 blank, no menu items.

    I have a Dell XPS 15 laptop running windows 8.1 When I run the creative cloud app, all I get is a blank window, with no menu items. How can I fix this?

  • Open view in external window..

    Hi, try this: define a new window and at this to the link action: //Create a new Window and open it IWDWindowInfo windowInfo = (IWDWindowInfo)wdComponentAPI.getComponentInfo().findInWindows("MyNewWindow"); IWDWindow window = wdComponentAPI.getWindowM

  • HT3702 Claim For a refund

    I bought an app for $1.99 and I been charged $7.55. Moreover the App dosen't even work. What's going on ? Why Am I being charged more than what the app real price. I need a quick respond. Please answer me as soon as possible. Regards, Kabbista