How can I reduce the time between songs to zero for seemless mixing

Hi, Ive only just got my 5th generation Ipod and was wondering if its possible to reduce the time gap between songs to zero. I.E a lot of Cd's and albums I have are mixed so it doesnt seem there is a pause between each song but when I put the cd's onto my ipod there is still a pause.
For example I have a 2 many djs album which is heavily mixed with a new song every 30 seconds so it is a bit of a nuisance if there is a pause every 30 seconds.

Your question gets asked on a daily basis, and has been answered many times. If you search for 'gapless playback' you'll see how just how many people inquire about this.
In short... the iPod does not support gapless playback.
If you want to eliminate the gaps, one workaround is to join the individual tracks together, and play them as one single track. You can do this by reimporting the CD into iTunes using the 'Join CD Tracks' feature.
See Step 3 in this article:
http://docs.info.apple.com/article.html?artnum=93079
If you'd like to send feedback to Apple to ask that they include gapless playback as a feature in future revisions of the iPod firmware, you can do so on this feedback page.

Similar Messages

  • How can I reduce the size of a pdf file for emailing?

    I want to send a pdf file which is 8 mb, it has bounced in an email because it is too big, how can I reduce the size of the pdf file for emailing?

    Sometimes a simple "Save As" will reduce the file size slightly, but probably not enough to pass the <8 mb threshold of your recipient, as you need.
    You've probably seen it, try the next option in the Save As menu, "Reduced Size PDF," and make it compatible with the latest version possible, again considering the recipient. This suggestion assumes Acrobat X. You don't say which version you're using, but this tool was available at least going back to Version 8, but in a different place, you'll have to hunt.
    If all that doesn't work, you could remove some images from the source document, which also will reduce the overall size.
    Best luck.

  • How can i measure the time between a pulse output and a pulse back on the input?

    Llo,
    I have a problem i use a ultrsonic sensor, and when i send a pulse out of 4V then a couple of ms i have a pulse back on the input, how can i exactly know how much time there is between the 2 ^pulse??

    Use the output pulse to trigger a counter in period measuring mode and stop the counter on the return signal (if the input return signal is large enough to reliably trigger a logic circuit). If the signal is not large enough to trigger the counter directly, an external comparator can be used to generate the stop signal.
    Another approach is to use two channels of analog input. Feed the output signal to one of them and the return signal to the other channel. The time between outgoing and return pulses can be determined from the sampling rate. If precise timing is required and your AI board does not have simultaneous sampling, you have to account for the inter-channel time as well.
    Lynn

  • How can I eliminate the pause between songs on playback on the Nano?

    I recently downloaded an album by Steve Reich that is intended to be played as one long uninterrupted song. The album is divided into tracks, however, and my iPod Nano always stops for a second or two between songs.
    Is there anyway to get it to play them continuously without interruption?

    This question is one that crops up a lot on these forums (it's one of the most frequently asked questions) and has been a major source of complaint for as long as the iPod has been in existence.
    Currently the only way to eliminate the gap between songs is to import the cd as one track. You do this by using the “join cd tracks” option in the advanced menu of iTunes.
    Make sure the tracks are in their correct order, and highlight those you wish to join.
    No gaps, but the downside is that you will of course lose the ability to navigate between tracks, and the song info is also lost. The iPod will display the cd title in the song field in the “now playing” screen . You’ll also have one large file instead of a number of smaller ones.
    Be aware also that playback of single large audio files can shorten battery playtime between charges.
    If you would like to see gapless playback implemented to the iPod, add your voice to the many here.
    iPod Feedback.

  • How can I reduce the width between search results and the preview fly-out?

    Hello, I am using a custom masterpage that reduces the overall width of page content but I am seeing an issue with my enterprise search site. The search results look fine but there is a large horizontal gap between the results and document preview window
    (when mousing over a word/excel/powerpoint result). This means that the preview fly-out is hardly visible unless the user scrolls horizontally to the right. Can someone tell me how to set a reduced width between the results web part and the preview window?
    Example:

    I think the issue is with the Callout orientation, have you customized the page and if so then you can customize the callout.
    check "beakOrientation" and you can set values like topBottom, leftRight as per your requirement.
    see here for more information -
    http://msdn.microsoft.com/en-us/library/office/dn135236(v=office.15).aspx
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • How can i measure the time between two successive rising edges ,using digital input ..

    Hello
    I'm trying to measure the time in seconds between each two successive rising edges on a digital input .
    Till now I have managed to detect the rising edge ,increment a counter with each rising edge ,and snap the time at which the rising edge happenned
    all I need now is to subtract the current rising edge time from the previous rising edge time in order to calculate (T) which can be 1/frequency and display it in realtime to the user.
    but I don't know how to do this
    Can somebody please help me !!!
    note: the time that I'm measuring ranges between 200 ms - 2 seconds
    Solved!
    Go to Solution.
    Attachments:
    Counter without time.vi ‏11 KB

    Cheers for that. It's always a good idea to post your SubVIs as well - the problem could be in one of those.
    To help you out:
    You already know how to use shift registers so why not use one again for time? Create a new shift register for  the time then simply compare the "rising edge time" to the the previous time stored in the shift register and then write the new time to the shift register.
    Just a few other pointers:
    1. You'll want to initialise your shift registers ie wire a constant to the left hand register outside of the loop. This will cause the register to be reset each time the program is run. This is so that your counter will start from zero each time you run your code.
    2. You don't need to use the "greater than?" compare function with boolean as they can only be true or false (1 or 0)! The "Equal?" function is what you should use here.
    3. Lastly, it's a small thing but you can use the same tunnel that feeds into a case structure in each of the cases - no need to create two tunnels for the true and false cases, use the same one.
    -CC
    "If anyone needs me, I'll be in the Angry Dome!"

  • How can I measure the time between each two successive rising edges ,using Digital Input ?

    Hello
    I'm trying two measure the time in seconds between each two successive rising edges on a digital input .
    Till now I have managed to detect the rising edge ,increment a counter with each rising edge ,and snap the time at which the rising edge happenned
    all I need now is to subtract the current rising edge time from the previous rising edge time in order to calculate (T) which can be 1/frequency and display it in realtime to the user.
    but I don't know how to do this
    Can somebody please help me !!!
    Solved!
    Go to Solution.
    Attachments:
    Counter without time.vi ‏11 KB

    Woah!  
    Sorry Apok, but your code is becoming way too complicated/messy. I don't think that all of those shift registers or boolean conversion/operators are needed at all.
    If you want to measure the timing between two button presses then this is a different (much less complicated) way. It simply records the timing of the button press into a shift register then compares the two.
    Spoiler (Highlight to read)
    Of course this is a very quick and basic solution just to show you that it can be much simpler than you are making it (remember to use the mechanical actions of the buttons to get the behaviour you want).
    A better way would be to use an event structure looking at value changes of the buttons to determine the timings between clicks.
    -CC
    "If anyone needs me, I'll be in the Angry Dome!"
    Attachments:
    Time between clicks.vi ‏9 KB

  • How can I set the time between how long my phone plays a text msg ringtone if I don't respond the first time?

    If I don't respond the first time, how can I set how many times/seconds it plays the next time until I respond?

    Actually, there is!
    http://www.apple.com/feedback/iphone.html

  • How can I shorten the gap between songs?

    I have this awkward gap in between songs. Crossfade is ridiculous and doesn't shorten the gap. Any way to get one song to fade into the next with no silence?

    Is there a 4 second gap at the end or start of the two songs that gap is between? In other words, song 1 to song 2, the end of song 1 might have 4 seconds of silence at the end of it. iTunes adds its 2 seconds and the end result is what sounds like a six second gap.
    Patrick

  • How can I reduce the time it takes to save and close my TIF files?

    It takes me six clicks to save my manipulated files to tif and close them.  Isn't there a way of setting the tif settings so that it doesn't prompt you for them each time?

    OK, let me back up a bit and make sure I'm thinking correctly about what I've done. I'll answer Shane's questions here, too.
    The video clips were shot on a Panasonic PV-GS500. They are DV Movies - DV/DVCPRO - NTSC. I brought them into iMovie, then I stored them on my desktop and transferred one of them into my FCP project, which is on the external drive I mentioned above. The wav file from the H4n is also stored on my desktop, though I imported it into the project.
    Is my project still referencing the original video and audio clips from my desktop? I can see how that would slow things down.

  • How can I reduce the time it takes to render my clips?

    I'm working on a MacBook Pro, 2.4 GHz Intel Core 2Duo machinewith 4 GB 667 MHz DDR2 SDRAM, usinf Final Cut Pro 6. In my current project I have one clip that's about 40 minutes long. I recorded separate audio on a Zoom H4n and the audio clip is even longer. I am going to try to sync up certain sections of these clips and replace the audio from the camera. But right now, my computer seems to be choking on these files. I know there is a way to edit at less-than-full resolution, and then output later at full resolution, but I don't remember how to do this. Any suggestions?
    What I really want to do is ask the boss for a more powerful computer, but, budgets being what they are, I need to make sure I've tried every trick in the book first to get the most out of my current setup!
    Thanks!

    OK, let me back up a bit and make sure I'm thinking correctly about what I've done. I'll answer Shane's questions here, too.
    The video clips were shot on a Panasonic PV-GS500. They are DV Movies - DV/DVCPRO - NTSC. I brought them into iMovie, then I stored them on my desktop and transferred one of them into my FCP project, which is on the external drive I mentioned above. The wav file from the H4n is also stored on my desktop, though I imported it into the project.
    Is my project still referencing the original video and audio clips from my desktop? I can see how that would slow things down.

  • How can I reduce the bit rate of songs in my Music Library to enable me to

    At the moment i can only fit about 1300 songs on my iphone and also have used up half the space on my 120gb Classic with 7000 songs which is a lot less than what i was told would fit on. so............
    How can I reduce the bit rate of songs in my Music Library to enable me to fit more songs onto my iPhone or iPod Classic.. and what is the minimum rate that i should stick to in order to retain good sound quality.

    For existing tracks, see:
    http://support.apple.com/kb/HT1550
    For CDs you import in the future, change the Import settings in the iTunes -> General preferences.
    As to what will be a good bit rate, that's going to be up to you and what quality you find acceptable, but many people find that 128 kbps AAC is the optimum balance between small file size and quality.

  • How can I reduce the recording time of the webcam?

    How can I reduce the recording time of the webcam?
    thanks
    Alex

    Keep in mind that Logic also has a limit of 8550 quarter notes. So changing the time signature to 4/8 can get longer recording times. So make sure you change this setting along with the song end. See page 93 in the reference manual.
    MBP 1.83 & MDD 1G DP   Mac OS X (10.4.7)   Logic Pro 7.2.2, Motu 828MkII+828, Firebox LC&XT, Tranzport, Unitor8+(3x)AMT-8's

  • How can I change the space between a checkbox and text all at one time? I have a lot of checkboxes in my form.

    How can I change the space between a checkbox and text all at one time? I have a lot of checkboxes in my form.

    Okay, I haven't found a way to add an extra space using Find/replace, but you might be able to add some text wrap to the check boxes that will push the text away from them.
    Open Find/Replace and click the Object tab.
    Click the Specify attributes to find button to the right of the Find Object Format: field.
    Under Basic Attributes, choose Stroke and then the Black swatch (assuming the black swatch is applied to the strokes of your check boxes). If there are no other stand-alone objects in your form with a Black stroke, this should be all you need. (If there are Black strokes on your table cells, they will be ignored.)
    Click OK
    Click the Specify attributes to change button to the right of the Change Object Format: field.
    Under Basic Attributes, choose Text Wrap & Other > Text Wrap > Type: > Wrap around bounding box (2nd button from left)
    Under Offset, set a Right offset at the distance you'd like to add (I don't know what units you use, but the 3-5 points might work for your purposes...might take some trial-and-error to get it where you want)
    Click OK
    Click Change All

  • How can I reduce the amount of space between paragraphs in Pages?

    How can I reduce the amount of space between paragraphs in Pages?

    Let's pretend that you told us which version of Pages you are talking about, and that you are using Pages 5:
    click in the text > Format > Spacing > click on triangle to expand options > change Before/After
    Peter

Maybe you are looking for

  • USB Webcam on Macbook with built-in Isight?

    Has anyone been able to use an external webcam via USB on a Macbook with built-in iSight? This should be very straight-forward, but it's not working for me. Is it possible? Thanks.

  • Clicking noise from the HDD of the new Mac Mini

    I just recently purchased a new Mac mini to retire the Macbook pro from my leaving room (it was heating up too much when running Plex). The problem I find is that the new Mini's HDD (toshiba 5400) has a loud clicking noise which on the MBP I can't ba

  • Find not working in GW 7 for one user

    The Find option does not show any results for one user. It works on Archived items. The user does have 14,000 sent items alone. Any step to take to fix this issue without having to recreate their account. Ran an analyse/fix and structural rebuild tha

  • Swiping in slide-show or scrollable frame

    Hello I would like to let the reader swipe through the images in my layout in a manner iOS desctops scroll or photos in the standart iOS app. Now they just fade. Or just scroll when put in a scrollable frame. I want them to get fixed a little before

  • Regarding  quantity limit in S O

    Hi,       for a paticular material when iam creating sales order the quantity is milimted to 20 .if i give 10  it automatically round it to 20. but if i give 30 it just gives a warning message and allows it.i want to restrict it if the quantity is no