Mpd won't resume in the middle of a track

When I stop mpd (/etc/rc.d/mpd stop) the state file (~/.mpd/mpd.state) is created/updated and the contents look to be correct. However, when I start mpd (/etc/rc.d/mpd start) mpd won't start at the same place within the track that is indicated by the state file. The correct track is played, it just always starts at the very beginning of it.
Does anyone know what may cause this? I've looked around but nothing I've tried (re-install, re-do the config from scratch, check permissions) has helped. Oh, and I'm pretty sure this started happening with the last update to 14.1.
Thanks in advance.

It works for me too. I'm using 0.14.1-3. Here's my ~/.mpdconf file (I don't use the system wide one):
# An example configuration file for MPD
# See the mpd.conf man page for a more detailed description of each parameter.
# Required files and directories ##############################################
# This setting controls the top directory which MPD will search to discover the
# available audio files and add them to the daemon's online database.
music_directory "~/Muziek/"
# This setting sets the MPD internal playlist directory. The purpose of this
# directory is storage for playlists created by MPD. The server will use
# playlist files not created by the server but only if they are in the MPD
# format.
playlist_directory "~/.mpd/playlists/"
# This setting sets the location of the MPD database. This file is used to
# load the database at server start up and store the database while the
# server is not up.
db_file "~/.mpd/mpd.db"
# These settings are the locations for the daemon log files for the daemon.
# These logs are great for troubleshooting, depending on your log_level
# settings.
log_file "~/.mpd/mpd.log"
error_file "~/.mpd/mpd.error"
# Optional files ##############################################################
# This setting sets the location of the file which stores the process ID
# for use of mpd --kill and some init scripts. This setting is disabled by
# default.
pid_file "~/.mpd/mpd.pid"
# This setting sets the location of the file which contains information about
# most variables to get MPD back into the same general shape it was in before
# it was brought down. This setting is disabled by default.
state_file "~/.mpd/mpdstate"
# General music daemon options ################################################
# This setting specifies the user that MPD will run as, if set. MPD should
# never run as root and you may use this setting to make MPD change its user
# id after initialization. Do not use this setting if you start MPD as an
# unprivileged user. This setting is disabled by default, and the server will
# run as root.
user "bart"
# This setting sets the address for the daemon to listen on. Careful attention
# should be paid if this is assigned to anything other then the default, any.
# This setting can deny access to control of the daemon.
# For network
#bind_to_address "any"
# And for Unix Socket
#bind_to_address "~/.mpd/socket"
# This setting is the port that is desired for the daemon to get assigned to.
port "6600"
# This setting controls the type of information which is logged. Available
# setting arguments are "default", "secure" or "verbose". The "verbose" setting
# argument is recommended for troubleshooting, though can quickly stretch
# available resources on limited hardware storage.
#log_level "default"
# If you have a problem with your MP3s ending abruptly it is recommended that
# you set this argument to "no" to attempt to fix the problem. If this solves
# the problem, it is highly recommended to fix the MP3 files with vbrfix
# (available from <http://www.willwap.co.uk/Programs/vbrfix.php>), at which
# point gapless MP3 playback can be enabled.
#gapless_mp3_playback "yes"
# This setting enables MPD to create playlists in a format usable by other
# music players.
#save_absolute_paths_in_playlists "no"
# This setting defines a list of tag types that will be extracted during the
# audio file discovery process. Optionally, 'comment' can be added to this
# list.
#metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
# Symbolic link behavior ######################################################
# If this setting is set to "yes", MPD will discover audio files by following
# symbolic links outside of the configured #music_directory "path_to_your_music_collection"
follow_outside_symlinks "yes"
# If this setting is set to "yes, MPD will discover audio files by following
# symbolic links inside of the configured #music_directory "path_to_your_music_collection"
follow_inside_symlinks "yes"
# Zeroconf / Avahi Service Discovery ##########################################
# If this setting is set to "yes", service information will be published with
# Zeroconf / Avahi.
#zeroconf_enabled "yes"
# The argument to this setting will be the Zeroconf / Avahi unique name for
# this MPD server on the network.
#zeroconf_name "Music Player"
# Permissions #################################################################
# If this setting is set, MPD will require password authorization. The password
# can setting can be specified multiple times for different password profiles.
#password "password@read,add,control,admin"
# This setting specifies the permissions a user has who has not yet logged in.
#default_permissions "read,add,control,admin"
# Audio Output ################################################################
# MPD supports various audio output types, as well as playing through multiple
# audio outputs at the same time, through multiple audio_output settings
# blocks. Setting this block is optional, though the server will only attempt
# autodetection for one sound card.
# See <http://mpd.wikia.com/wiki/Configuration#Audio_Outputs> for examples of
# other audio outputs.
# An example of an ALSA output:
audio_output {
type "alsa"
name "My ALSA Device"
# device "hw:0,0" # optional
# format "44100:16:2" # optional
# An example of an OSS output:
#audio_output {
# type "oss"
# name "My OSS Device"
# device "/dev/dsp" # optional
# format "44100:16:2" # optional
# An example of a shout output (for streaming to Icecast):
#audio_output {
# type "shout"
# encoding "ogg" # optional
# name "My Shout Stream"
# host "localhost"
# port "8000"
# mount "/mpd.ogg"
# password "hackme"
# quality "5.0"
# bitrate "128"
# format "44100:16:1"
# protocol "icecast2" # optional
# user "source" # optional
# description "My Stream Description" # optional
# genre "jazz" # optional
# public "no" # optional
# timeout "2" # optional
# An example of a pulseaudio output (streaming to a remote pulseaudio server)
#audio_output {
# type "pulse"
# name "My Pulse Output"
# server "remote_server"
# sink "remote_server_sink"
## An example of a null output (for no audio output):
#audio_output {
# type "null"
# name "My Null Output"
# This setting will change all decoded audio to be converted to the specified
# format before being passed to the audio outputs. By default, this setting is
# disabled.
#audio_output_format "44100:16:2"
# If MPD has been compiled with libsamplerate support, this setting specifies
# the sample rate converter to use. Possible values can be found in the
# mpd.conf man page or the libsamplerate documentation. By default, this is
# setting is disabled.
#samplerate_converter "Fastest Sinc Interpolator"
# Volume control mixer ########################################################
# MPD has limited volume controls, to use them pick one below. If one is not
# specified it may be autodetected at startup, depending on the dependencies
# which were compiled into the server.
# An example for controlling an ALSA mixer:
mixer_type "alsa"
mixer_device "default"
mixer_control "Master"
# An example for controlling an OSS mixer:
#mixer_type "oss"
#mixer_device "/dev/mixer"
#mixer_control "PCM"
# This example is a general volume control mixer, it is used to adjust the
# volume of the audio sent to the audio output, and will work with all outputs.
#mixer_type "software"
# Normalization automatic volume adjustments ##################################
# This setting specifies the type of ReplayGain to use. This setting can have
# the argument "album" or "track". See <http://www.replaygain.org> for more
# details. By default this setting is disabled.
#replaygain "album"
# This setting sets the pre-amp used for files that have ReplayGain tags. By
# default this setting is disabled.
#replaygain_preamp "0"
# This setting enables on-the-fly normalization volume adjustment. This will
# result in the volume of all playing audio to be adjusted so the output has
# equal "loudness".
#volume_normalization "no"
# MPD Internal Buffering ######################################################
# This setting adjusts the size of internal decoded audio buffering. Changing
# this may have undesired effects. Don't change this if you don't know what you
# are doing.
#audio_buffer_size "2048"
# This setting controls the percentage of the buffer which is filled before
# beginning to play. Increasing this reduces the chance of audio file skipping,
# at the cost of increased time prior to audio playback.
#buffer_before_play "10%"
# HTTP Streaming Proxy ########################################################
# This setting specifies the HTTP proxy to use for playing HTTP streams. By
# default, these settings will be disabled.
#http_proxy_host "proxy.isp.com"
#http_proxy_port "8080"
#http_proxy_user "user"
#http_proxy_password "password"
# Resource Limitations ########################################################
# These settings are various limitations to prevent MPD from using too many
# resources. Generally, these settings should be minimized to prevent security
# risks, depending on the operating resources.
#connection_timeout "60"
#max_connections "10"
#max_playlist_length "16384"
#max_command_list_size "2048"
#max_output_buffer_size "8192"
# Character Encoding ##########################################################
# If file or directory names do not display correctly for your locale then you
# may need to modify this setting. After modification of this setting mpd
# --create-db must be run to change the database.
#filesystem_charset "UTF-8"
# This setting controls the encoding that ID3v1 tags should be converted from.
#id3v1_encoding "ISO-8859-1"

Similar Messages

  • Hi. My Macbook Pro won't start, in the middle of the screen, there is a folder sign with a question mark blinking. Thanks a lot!

    Hi. My Macbook Pro won't start, in the middle of the screen, there is a folder sign with a question mark blinking. Thanks a lot!

    Here's a link to a Support page on the topic, which may be of help in finding resolution:
    •A flashing question mark or globe appears when you start your Mac
    There are a few known causes of this symptom, so you'd have to try some things to
    see if you can narrow down the cause; this often accomplished by finding success.
    Hopefully the info there helps.
    Good luck & happy computing!

  • How do I fade down or up (not in and out) in the middle of a track?

    Hvae cs5.5--need to fade music down and up in the middle of a track to accomodate speech. Seems like a really basic function but nothing coming up in the help files. Anyone?

    There's various ways but search the help for "volume envelopes".  That's probably the easiest.  Basically it involves just clicking on a horizontal line running through the tracks in multitrack view.  You drag the line upwards to increase the volume or down to decrease it--and you can be very precise about the amount of change and timing.  The full procedure is described in details in the online user guide.
    The other way would be to use the mixer and the "automation lanes", also described in detail in the help files--but this would likely be more tricky to learn and overkill for your needs.

  • Changing patches on an external keyboard in the middle of a track

    I just figured out how to switch banks and patches on my external keyboard, which is a Kawai MP8II, from within Logic Pro. I would like to know if it is possible to switch patches in the middle of a track. How do I send a system control message that would accomplish this?

    I presume by 'system control' you mean a sysex (system exclusive) message which isn't really necessary at all.
    If you want the patch to change, locate the position where you want it to change, press 'pause' and then hit the record button. If you make the change to the program number while its in record mode, then turn off record, even though the transport hasn't moved, the change has been recorded.
    Hope that's what you mean!

  • New iPod Nano Turns off in the middle of any track playing - Apple Bummer

    So, I just received my iPod Nano as a replacement to an early generation of iPod Nano's that are subject to recall.  The new Nano has been updated as of 21 Jan 2012.  Songs loaded into iTunes under MAC OS X Lion, iPod Nano synched with my computer, and I'm ready to go.
    What - not so fast!  Guess what?  The Nano turns itself off in the middle of any track you play.  I turned the shake and shuffle mode off to make sure that is not it.  And it is fully charged.  I even went through the reset procedures.
    So its less than 24 hours new/old so I go for Apple support.  My original iTunes etc accounts are associated with my house in America.  But I live in the UK right now.  So drill through Apple support and guess what?  Well, I live in London so no support is available.  And the Apple web site as usual does not provide much help in making calls.
    Apple's web site says there is no coverage on this as it is out of warranty?  24 hours new?  No warranty.  It says it comes with a one year warranty. And Apple UPS'd it to me yesterday.
    So question 1 is:  Does anybody know what the problem is and how to fix it?  I hope it isn't operator head space but who knows, maybe it is.
    And question 2:  Does anybody have a good 800 number for me to call in the USA?
    Many thanks.

    Livin Doll wrote:
    I have the same problem and wondered if it was loosey goosey headphones which were just cheap 10 dollars buds.  So are you saying I should get new ear phones that fit tighter?
    That would be my guess....Here is what Apple has to say about the problem. 
       http://support.apple.com/kb/ts3700
    My guess is that it is a compatibility problem with older or aftermarket ear buds.  My daughter has a 6th generation Nano and does not have this problem but keep in mind she is using the ear buds that came with the 6th Generation Nano.  With the replacement program they are not sending new ear buds.  I just did a test with my daughters 6th Generation Nano using an old set of aftermarket ear buds I had in my desk and I was able to duplicate your issue.  I then used the ear buds from my Iphone 4s and did not have an issue with the Nano going to sleep and the music turning off.

  • Can I switch instrument (=patch???) in the middle of a track

    I will have a lot of questions in the future so I want to explain and apologize before I ask the question of the day. I make "modern classical" (terrible name) and have been working with Sibelius so the world of the DAWs is rather new for me. Now with Logic I am intrigued by the possibilities of the synthesizers. I am trying to find out how to use them but to start with I use only the existing patches. Seems to be hundreds in total.
    Now the question:
    In Sibelius I can switch instruments in a stem. I can, e.g., replace a trumpet with a clarinet for bars 70 to 80. Is it possible in Logic to change the patches (I assume that is the terminology for a synthesizer instrument) in the middle of a midi track using key switches or CCs or do I have to split up the midi track into several using one for each patch?
    Example: I use EFM1 with "Harmonic Keys". Now I want to use "Heavens Harp" in bars 70 to 80. Can I do this with only one track or do I have to split the track?
    I think I asked the questions twice.
    Leander

    Hi,
    it's the most convenient and simple way to split the track and have two synths running. However, you could automate the synth if you only change some aspects of the sound like sweeping a filter or turning oscillators on or off or something like that. A complete patch change is best done by transferring the part of the MIDI data to another track with the new patch. You could try to assign the patch change command to a MIDI controller and record it into the performance (don't know if this works - just a thought of mine). But i won't recommend this, since it would introduce more issues than it resolves.
    Fox

  • Skips to the next song while in the middle of a track (in Shuffle mode)

    On some tracks, my iPod suddenly skips to the next track when it is in shuffle songs mode. This seems to happen randomly in the middle (or close to the beginning...e.g. 30 seconds in) of tracks, and I can't figure out why it isn't playing the whole track. Suggestions?

    I imagine sbonewicz looked at a couple of the More Like This threads listed in the panel on the right and found a solution there, such as this one...
    Assuming you are in a region where you are allowed to redownload your past music purchases, delete the corrupt tracks from your iTunes library, close and then reopen iTunes, go to the iTunes Store home page, click the Purchased link from the Quick Links section in the right-hand column, then select Music and Not on this computer. You should find download links for your tracks there.
    While downloading select Downloads in the left-hand column and make sure Allow Simultaneous Downloads is unchecked.
    If the problem persists, or that facility is not yet available in your region, contact the iTunes Store support staff through the "Report a problem" links in your account history, or via Contact Support.
    See also:
    HT5085 - iTunes in the Cloud and iTunes Match Availability
    HT2519 - Downloading past purchases from the App Store, iBookstore, and iTunes Store
    tt2

  • Time Machine "cleaning up" in the middle of my initial backup

    I am trying to backup using time machine to a brand new external firewire drive that I've just formatted. The initial backup is about 150GB and about 20GB of the way into the backup time machine stops copying and the status window says "cleaning up" and then things seem to hang indefinitely. I've already tried deleting time machine preferences, what's going on here and how can I fix?
    Message was edited by: Jensen Gelfond

    Well deleting stuff won't help in the middle of a backup. Cancel the backup and re-prep the backup drive as follows:
    Drive Preparation
    1. Open Disk Utility in your Utilities folder.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID then click on the OK button. Click on the Partition button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    Reconfigure TM preferences to select the backup drive and configure your backup preferences, then let TM do its work.
    Note that before performing a backup you should be sure that the system you are backing up is clean. So I would consider some basic things:
    A. Repair the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    B. Kappy's Personal Suggestions for OS X Maintenance
    For disk repairs use Disk Utility. For situations DU cannot handle the best third-party utilities are: Disk Warrior; DW only fixes problems with the disk directory, but most disk problems are caused by directory corruption; Disk Warrior 4.x is now Intel Mac compatible. TechTool Pro provides additional repair options including file repair and recovery, system diagnostics, and disk defragmentation. TechTool Pro 4.5.1 or higher are Intel Mac compatible; Drive Genius is similar to TechTool Pro in terms of the various repair services provided. Versions 1.5.1 or later are Intel Mac compatible.
    OS X performs certain maintenance functions that are scheduled to occur on a daily, weekly, or monthly period. The maintenance scripts run in the early AM only if the computer is turned on 24/7 (no sleep.) If this isn't the case, then an excellent solution is to download and install a shareware utility such as Macaroni, JAW PseudoAnacron, or Anacron that will automate the maintenance activity regardless of whether the computer is turned off or asleep. Dependence upon third-party utilities to run the periodic maintenance scripts had been significantly reduced in Tiger and Leopard. These utilities have limited or no functionality with Snow Leopard and should not be installed.
    OS X automatically defrags files less than 20 MBs in size, so unless you have a disk full of very large files there's little need for defragmenting the hard drive. As for virus protection there are few if any such animals affecting OS X. You can protect the computer easily using the freeware Open Source virus protection software ClamXAV. Personally I would avoid most commercial anti-virus software because of their potential for causing problems.
    I would also recommend downloading the shareware utility TinkerTool System that you can use for periodic maintenance such as removing old logfiles and archives, clearing caches, etc. Other utilities are also available such as Onyx, Leopard Cache Cleaner, CockTail, and Xupport, for example.
    For emergency repairs install the freeware utility Applejack. If you cannot start up in OS X, you may be able to start in single-user mode from which you can run Applejack to do a whole set of repair and maintenance routines from the commandline. Note that AppleJack 1.5 is required for Leopard. AppleJack 1.6 is compatible with Snow Leopard.
    When you install any new system software or updates be sure to repair the hard drive and permissions beforehand. I also recommend booting into safe mode before doing system software updates.
    Get an external Firewire drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
    Backuplist
    Carbon Copy Cloner
    Data Backup
    Deja Vu
    iBackup
    JaBack
    Silver Keeper
    MimMac
    Retrospect
    Super Flexible File Synchronizer
    ynchronizer
    SuperDuper!
    Synchronize Pro! X
    SyncTwoFolders
    Synk Pro
    Synk Standard
    Tri-Backup
    Visit The XLab FAQs and read the FAQs on maintenance, optimization, virus protection, and backup and restore.
    Additional suggestions will be found in Mac Maintenance Quick Assist.
    Referenced software can be found at CNet Downloads or MacUpdate.
    Message was edited by: Kappy

  • Can I transfer a call to another Verizon cell in the middle of a call?

    Does anyone know if it is possible to transfer a call to another Verizon cell in the middle of a call?  Not call forwarding, but transfer during the call?
    So, I answer the phone and talk to the caller.  Then, I want to transfer the caller to Joe on another cell phone.  Is there any way to put the caller on hold and transfer the call to Joe's Verizon cell?
    My understanding is that call forwarding only works for the initial phone call - the call forwards to another number, but it won't work in the middle of a call. 
    Any help is appreciated!
    Thanks

    All the older Nokia phones you answer a call – you can put it on hold – call someone else, tell him/her that you are transferring a call – press  4 and hang up. Those two can continue the conversation together.
    That’s what I’m looking for.
    With Lumia I don’t want to be the 3rd wheel in the conversation... 
    I haven't found the way to end the call so that the others could continue (not even with conference call)

  • How to stop itunes quitting in the middle of playback

    Hi everyone. Does anyone know how to set my iTunes or Mac up so that iTunes won't quit in the middle of playback? I'm streaming to my TV using Apple TV, and after a while, my screen goes blank and when I go back to my computer to check, I find that iTunes has logged out or quit. I've already set my energy saving preferences to 'never sleep' but this still happens and there is no iTunes preference to prevent it from happening. Any help would be most helpful. Thank you!

    Pages version? Number, please!

  • My canon IX6520 printer print cartridge doesn't return to the middle

    printer cartridge won't return to the middle and when I press the on off switch it makes kind of a roaring noise
    help! canon PIXMA IX 6520, printer is only about a year old.

    Hello @jkjk2000 , welcome to the forums!
    I read about the carriage not moving in your Deskjet F2180 when you open the carriage access door.
    I would recommend trying the steps in this guide to hopefully help correct this issue for you!
    'The print cartridge cradle cannot move' Error Message Displays on the Computer
    If the troubleshooting does not help resolve your issue, I would then suggest calling HP's Technical Support to see about further options for you. If you are calling within North America, the number is 1-800-474-6836 and for all other regions: click here.
    Happy Monday
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • My iPhone 5 won't use 3G when 4G isn't available. I live in the middle of nowhere, but with my iPhone 4 I could use the Internet on 3G just fine. Now I don't get anything unless I'm on wifi. I have AT

    My iPhone 5 won't use 3G when 4G isn't available. I live in the middle of nowhere, but with my iPhone 4 I could use the Internet on 3G just fine without needing wifi. Now I don't get anything unless I'm on wifi. My phone says '4G' but then says 'could not activate cellular data' or gives me the gray google failed because you dont have internet page. I have AT&amp;T if that matters. I just want to get Internet and my email like I used to be able to. Slow 3G is fine with me, but I need it to work on my iPhone 5. Can anyone help me?

    Oh ok, thank you! So I just got a bum SIM card when I bought this phone or something?

  • How do I restore my Ipad 4 from my desktop computer? My charger was broken. I bought a new one but now it won't charge. I have a BATTERY bar in the middle of the screen that is flashing RED and I have a symbol on the bottom that looks like a charger.

    How do I restore my Ipad 4 from my desktop computer? My charger was damaged so I bought a new one but it won't charge. On my Ipad, I have a BATTERY bar in the middle that is flashing RED and an icon on the bottom that looks like the end of a charger. I have tried to force into reset mode, by holding the sleep key and home button SEVERAL times but it does NOT work. I have plugged my Ipad into my desktop computer, but I do not have a screen on my desktop that is coming up. THIS HAPPENED BEFORE AFTER I DID AN UPDATE AND WAS LOCKED OUT AND I USED EITHER ICLOUD OR ITUNES TO RESTORE, NOT SURE WHICH AND I FORGOT HOW.

    Hi MrsMoosie,
    I'm sorry to hear you are having these issues with your iPad. If your iPad isn't responding or doesn't appear to be charging, you may find the information and troubleshooting steps outlined in the following articles helpful, in particular the following portion:
    If you don't see the charging screen within an hour, or you see the connect to power screen, check your connector, USB cable, and power adapter. Make sure that everything is plugged in firmly, free of debris, and not damaged. You might want to try a different USB cable or power adapter.
    If your iPhone, iPad, or iPod touch doesn't respond or doesn't turn on - Apple Support
    If you can’t charge your iPhone, iPad, or iPod touch - Apple Support
    Regards,
    - Brenden

  • My Radio on my Nano won't pick up a signal.. I cennected my headphones and am in the middle of the city. Also my iPod keeps pausing every like 30 seconds.. What do I do?

    My Radio on my Nano won't pick up a signal.. I cennected my headphones and am in the middle of the city, so there are plenty of stations to find. Also my iPod keeps pausing every like 30 seconds when I try to listen to my music. I just got it for Christmas and already loaded it with songs.. What do I do?

    Push the headphone jack all the way in, you don't have it fully plugged in yet.

  • When I try to open a picture from email all I get is a yellow mozilla square in the middle of my screen and it won't go away unless I restart and I can't view the picture.

    Why can't I open pictures sent to me in email. All I get is a yellow mozilla box in the middle of my screen that won't go away unless I restart.
    == This happened ==
    A few times a week
    == when I try to view a picture

    The ! turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    What version of iPhoto? Assuming 09 or later...
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

Maybe you are looking for

  • Updated iTunes and now it won't open on my computer

    I just did the OS X update and then the iTunes update and now my iTunes won't open on my Mac mini. I click the icon and it doesn't do anything and I even tried opening it in my applications folder and it still won't come up. Is anyone else having thi

  • It keeps saying my serial number is invalid and i paid tooo much for it to not work

    my serial number doesnt work

  • Make a dvd from imovie

    The new version of iMovie doesnt let me use iDVD. How do I create a DVD now? I have family overseas that I want to share my movies with.

  • Copy style

    Hi Please can someone advise how I can easily copy and paste styles across slides textually on Keynote? When I copy style in one text box to paste in another text box on Keynote (even on the same slide!), nothing happens. It is really annoying (and I

  • Cannot import bookmarks to E71

    I just got my e71 which is great but using Nokia suite and ticking boxes to add bookmarks from pc IE, but cannot find them on my phone. Am I just not looking in the right place? I am very frustrated, as I can't find any answer anywhere. Is it such an