Sonata Library Files Playing only internet connection time

Hi everyone.
My Problem ; Sonata Library Files Playing only internet connection time.When Internet connection not available sonata not playing my library files.
Thank you for helping.
MPD Conf
# An example configuration file for MPD
# See the mpd.conf man page for a more detailed description of each parameter.
# 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. This
# setting defaults to the XDG directory, otherwise the music directory will be
# be disabled and audio files will only be accepted over ipc socket (using
# file:// protocol) or streaming files over an accepted protocol.
music_directory "~/music"
# 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. This setting defaults to playlist saving being disabled.
playlist_directory "~/.mpd/Playlist"
# 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. This setting defaults to disabled which will allow
# MPD to accept files over ipc socket (using file:// protocol) or streaming
# files over an accepted protocol.
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.
# The special value "syslog" makes MPD use the local syslog daemon. This
# setting defaults to logging to syslog, otherwise logging is disabled.
log_file "~/.mpd/mpd.log"
# 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 and the pid file will not be stored.
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 and the server
# state will be reset on server start up.
state_file "~/.mpd/mpdstate"
# General music daemon options ################################################
# This setting specifies the user that MPD will run as. MPD should never run as
# root and you may use this setting to make MPD change its user ID after
# initialization. This setting is disabled by default and MPD is run as the
# current user.
user "ceyhan"
# 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 TCP 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.
#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.
#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"
# Input #######################################################################
input {
plugin "curl"
# proxy "proxy.isp.com:8080"
# proxy_user "user"
# proxy_password "password"
# 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
mixer_device "default" # optional
mixer_control "MASTER" # optional
mixer_index "0" # optional
# An example of an OSS output:
#audio_output {
# type "oss"
# name "My OSS Device"
## device "/dev/dsp" # optional
## format "44100:16:2" # optional
## mixer_device "/dev/mixer" # optional
## mixer_control "PCM" # 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 httpd output (built-in HTTP streaming server):
#audio_output {
# type "httpd"
# name "My HTTP Stream"
# encoder "vorbis" # optional, vorbis or lame
# port "8000"
## quality "5.0" # do not define if bitrate is defined
# bitrate "128" # do not define if quality is defined
# format "44100:16:1"
# An example of a pulseaudio output (streaming to a remote pulseaudio server)
#audio_output {
# type "pulse"
# name "My Pulse Output"
## server "remote_server" # optional
## sink "remote_server_sink" # optional
## Example "pipe" output:
#audio_output {
# type "pipe"
# name "my pipe"
# command "aplay -f cd 2>/dev/null"
## Or if you're want to use AudioCompress
# command "AudioCompress -m | aplay -f cd 2>/dev/null"
## Or to send raw PCM stream through PCM:
# command "nc example.org 8765"
# format "44100:16:2"
## 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 ########################################################
# These are the global volume control settings. By default, this setting will
# be detected to the available audio output device, with preference going to
# hardware mixing. Hardware and software mixers for individual audio_output
# sections cannot yet be mixed.
# An example for controlling an ALSA, OSS or Pulseaudio mixer; If this
# setting is used other sound applications will be affected by the volume
# being controlled by MPD.
#mixer_type "hardware"
# An example for controlling all mixers through software. This will control
# all controls, even if the mixer is not supported by the device and will not
# affect any other sound producing applications.
#mixer_type "software"
# This example will not allow MPD to touch the mixer at all and will disable
# all volume controls.
#mixer_type "disabled"
# 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. This setting is disabled by default.
#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". This setting is disabled by default.
#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%"
# 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"
Last edited by SYSTEMEDIC (2010-07-10 06:36:03)

What is dropping I guess is the question? Is it wireless? Is it your WAN connection? You need to identify where the problem is.
To do that you need to try a few things.
1. If you use wireless then bypass it and use ethernet if that is possible.. even just drag things around so you can test if ethernet fixes it. If so and wireless is in fact the problem.. then you can do a few things.
2. Wireless issues with the 7.6.4 firmware are common. Did you upgrade about the time the problems started? I am afraid the bad news is, downgrading is not like in the past where it fixed things.. 7.6.4 seems to have some permanent effect on the TC and it is never quite the same again. How this is even possible I have yet to determine.
The usual fix is factory reset.
Set wireless with short names, no spaces and pure alphanumeric. Different name for 5ghz.
Make sure security is WPA Personal  with pure alphanumeric password of 8-20 characters.. unless you are more paranoid.
Fix the wireless channels and test in order. 11, 8, 6, 1
And for 5ghz try the lowest channel, 36 and then a high one, around 150.
3. No improvement factory reset again.. downgrade to 7.6.1 or even 7.5.2 if it is an older Gen4 .. at 18months it might be old enough.. no harm trying. Factory reset again after the downgrade to see if we can get rid of the memory effect.. then try the above steps again.
No luck.. whatever the upgrade did it did permanently.. no fix is available until Apple pushes out a new firmware to fix what they did in the last one. Buy a different wireless router for now and use the TC in bridge just for TM backups.

Similar Messages

  • Internet connection times out when downloading update ios5. get to last 0.01 of date, says processing file and then says connection timed out. impossible. is there a fix?

    Internet connection times out when downloading update ios5. get to last 0.01 of data, says processing file and then says connection timed out. Is there a fix?
    I am using itunes 10.5. Update didnt work on last software but restore did work. Help

    After two days of attempts, Google & Apple searches, one Apple post stated to turn off all firewalls and virus software and keep trying since there were 6 gazillion people trying to update.  I have Windows 7 & Kaspersky and had to diable every single safety feature in Kaspersky as well as Firewalls and it finally allowed the download and update attempt. 
    Glancing at the forum, there appears to be numerous other problems with missing pictures, text problems etc after the IOS5 download but fortuneately, everything seems ok so far.  Good luck, it is frustrating!  Hattie47

  • How do you stream movies if iPad is your only internet connection

    I am trying to stream a netflix movie from my iPad using Apple TV but my only internet connection is my iPad, any suggestions?

    Sorry, you will need a local network to use the Apple TV.

  • IPod nano plays only when connected to PC

    My nano is a 3rd, I think. I bought it from Apple's iPod website 2 years ago. I was using the iPod on a Harley-Davison plugged into the iPod connection of a Jenson Marine radio. I had it in a little rubbery protecting case. This pas week I had to ride in the rain. While the iPod was protected from the rain moisture built up inside the case. Now it will play only when connect to the PC.
    When it is connected to the PC everything works normal. ITunes does not need to be running, only it needs to be connected via the USB. I plug the speakers directly into the iPod and it work normally. But, when I un plug it, it dies. Not only does it quit playing but none of the keys are active. It is just DEAD. The display remains as it was but not moving. Of course I have reloaded factory defaults and started all over. But it is dead if not connected via USB 04/01/09
    port.
    Hopefully someone can help. It was a $300 unit. I sure don't want to have to buy another.
    thanks,
    wayne

    It sounds like a battery issue to me. When you connect it to the PC it draws power from the computer and thus it is able to function. Apparently it doesn't have enough of its own juice anymore. You probably just need a new battery.

  • I could play brickbreaking on my blackberry now I have i phone 4s i need to know what games can i play without internet connection and free thanks

    I used to be able to play brick breaking on my blackberry, i have now upgraded to an iphone4s what games can i play without internet connection or using up my 3g data as it is limited, thanks

    Have you considered looking for something in the app store?

  • Sharing files without an Internet Connection - any solutions?

    Has anyone found a way to share files to/from the iPad when an Internet connection is not available? We are considering iPads for International conferences and there are times when there's no Internet connection or someone who needs to share files with us can not access the Internet. Using a laptop this is easily solved with USB thumb drives.
    Short of a hack, which isn't really an option, has anyone found a way to share files on the fly?  Or is an Internet connection and file sharing or email the only viable solution?

    Check out siteclone in the app store.  It basically allows you to set up an FTP directory as a "push" location, and clone it on remote devices. Your remote users would be provided a location and user/pass, and they would be populated with whatever content you want them to have.  When offline, they can see everything without the need for a connection.

  • HT1386 I bought music off itunes and synced it to my iphone but they won't play without internet connection?!

    I have bought an album off itunes and having trouble syncing to my iphone 3gs.  First of all, all songs from the album were synced twice and would some would not play.  I finally managed to remove the duplicates and now most of the songs on the album will not play without 3g internet connection! Any help on how to fix this would be greatly appreciated!

    Do you have enough free space on the phone to download them?

  • How do you start 2+ audio files playing at the same time?

    I am trying to play 2 audio files at the same time, but I cannot figure out how to start them playing at the same time without latency issues.
    If someone can please explain the process for doing this using Audio Queue Services, I will forever be in your debt.
    This is for iPhone, but I was getting no love in those forums on this issue.

    Thanks for your reply. Apple's iPhone Application Programming Guide states the Following:
    *Playing Multiple Sounds Simultaneously*
    To play multiple sounds simultaneously, create one playback audio queue object for each sound. For each audio queue, schedule the first buffer of audio to start at the same time using the AudioQueueEnqueueBufferWithParameters function.
    This leads me to believe that it is possible. I have just not been able to get them to play precisely the same time, there is always delay.

  • Wireless file transfer cripple internet connection. Why?

    Using 10.6.8 with all the latest updates.
    Whenever I'm transferring lots of files, not necessary huge files with 802.11n AirPort base station to a network storage or another Mac, my internet connection is crippled to a crawl. Did all the repair and maintenance but the problem persist.
    Never have this problem for years until the recent security update, I think.
    Google like **** and can't seems to find a solution. Have another Mac with Lion install and with similar activities, no problem. Do not wish to update my working Mac to Lion yet.
    Anyone any idea what could be problem and have a possible fix. I did reapply the 10.6.8 Combo Update and no fix.
    Help? Thanks.

    No b clients just one mac plugged directly into the
    router via ethernet cord, and then my powerbook which
    connects wirelessy... to copy a 20mb file it took
    10mins...
    Which router do you have?
    iFelix

  • How to uninstall and reinstall if firefox is my only internet connection

    getting directed to bad place when accessing internet. Did virus scan, found nothing.
    How can I uninstall and reinstall firefox since I have no other internet connection. I DO NOT was to load internet explorer.

    Bad redirects can result from a variety of causes, including (1) system level malware, (2) system level settings changes, (3) bad Firefox add-on, (4) Firefox settings changes, (5) other (depending on the nature of the redirect).
    Here's what I suggest for tracking it down:
    (1) Open the Windows '''Control Panel''', Uninstall a Program. After the list loads, click the "Installed on" column heading to group the infections, I mean, additions, by date. This can help in smoking out undisclosed bundle items that snuck in with some software you agreed to install. Take out as much trash as possible here.
    (2) Then, in Firefox, open the '''Add-ons page''' using either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Plugins. Set nonessential and unrecognized plugins to "Never Activate".
    In the left column, click Extensions. Then, if in doubt, disable (or Remove, if possible) unrecognized and unwanted extensions.
    Often a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    (3) Check your '''Firefox connection setting''' in the Options dialog here:
    "3-bar" menu button (or Tools menu) > Options > Advanced > Network mini-tab > "Settings" button
    The default of "Use system proxy settings" should piggyback on your Windows/IE "LAN" connection settings, but you also can try "No Proxy" to see whether that works better.
    (4) Search for remaining issues with the '''scanning/cleaning tools''' listed in our support article: [[Troubleshoot Firefox issues caused by malware]].
    Are you able to get rid of the unwanted redirect?

  • Swf music files play at the same time.

    I have several swf songs on my site but opened in a browser all of the songs automatically play at the same time. In properties, each song's auto and loop boxes are not selected. Any ideas?

    Why not use an MP3 player that supports playlists?
    Pickle Player (works with iPhone/iPad, Android, etc...)
    http://www.pickleplayer.com/examples/
    JW Player
    http://www.longtailvideo.com/players/jw-flv-player/
    Wimpy MP3 Player (uses Flash - not supported on iDevices)
    http://www.wimpyplayer.com/products/wimpy_mp3.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Internet connection timer in menue bar?

    Hello, I was looking for help to make my mac have a small picture of a phone with a small dial showing how long ive been on the net for, just like in the top right hand corner of this picture.. any reply would be VERY greatfully apprecited THANKS!!
    *not actually picture of my mac...

    I have just the opposite situation...
    I just migrated from Tiger to Leopard. In Tiger the menu bar just showed the Airport signal. In Leopard it shows the signal icon and the connect time. I don't need to know the connect time on an "Always On" connection, and it's taking up some valuable Menu Bar real estate.
    So, how do I keep the signal strength icon but not the connect time?

  • How can I stop a sound from looping so it plays only once each time the up key is pressed?

    Hi there here is my code, the basis is it is playing a mp3 from my library.
    Basically as the topic suggests I only want the sound to play once each time the UP arrow key is pressed. At the moment when you hold the up arrow down the sound keeps triggering and looping and gets really loud and noisy.
    Here is my code for my game:
    package com.chasegame.components
              import flash.display.MovieClip;
              import flash.display.Stage;
              import flash.events.Event;
              import com.tech.utils.KeyObject;
              import flash.ui.Keyboard;
              import flash.media.Sound;
              import flash.media.SoundChannel;
              public class SpaceShip extends MovieClip
                        private var key:KeyObject;
                        private var speed:Number = 0.3;
                        private var rotateSpeed:Number = 5;
                        private var vx:Number = 0;
                        private var vy:Number = 0;
                        private var friction:Number = 0.95;
                        private var shipSound:roar = new roar();
                        private var shipSoundChannel:SoundChannel = new SoundChannel();
                        public function SpaceShip () : void
                                            key = new KeyObject(stage);
                                            addEventListener(Event.ENTER_FRAME, loop, false, 0, true);
                        public function loop(e:Event) : void
                                            if (key.isDown(Keyboard.UP))
                                                           vy += Math.sin(degreesToRadians(rotation)) * speed;
                                                           vx += Math.cos(degreesToRadians(rotation)) * speed;
                                                           shipSoundChannel = shipSound.play();
                             else
                                                           vy *= friction;
                                                           vx *= friction;
                                  if (key.isDown(Keyboard.RIGHT))
                                            rotation += rotateSpeed;
                                  else if (key.isDown(Keyboard.LEFT))
                                            rotation -= rotateSpeed;
                                  y += vy;
                                  x += vx;
                                  if (x > stage.stageWidth)
                                            x = 0;
                                  else if (x < 0)
                                            x = stage.stageWidth;
                                  if (y > stage.stageHeight)
                                            y = 0;
                                  else if (y < 0)
                                            y = stage.stageHeight;
                        public function degreesToRadians(degrees:Number) : Number
                                  return degrees * Math.PI / 180;

    If you want the sound to only play once when the key is pressed then you don't want to have it in the ENTER_FRAME event handler like you have it.  It is starting new sounds at the frame rate of your file the way you have it now.
    Try having an event listener dedicated to a KeyboardEvent.KEY_DOWN event where you detect when the UP key gets pressed and use that to trigger playing the sound.

  • File Sharing vs Internet connection

    Hi, I'm quite new to Macs, so please forgive me for spelling out overly basic information!
    I'm on a home network which has no access to the internet. Mine is an iMac, while the other 3 computers are Windows based. They are all connected via a wireless router, mine using the built-in AirPort. Everything works great and I can share files via the Sharing area of System Preferences and can quite successfully access all other computers. I can see in the Sharing section that other computers can connect to me via smb://192.168.0.11. Perfect!
    Next, I have a 3G USB modem which allows me on to the internet, hey I got to this forum! So this clearly also works well.
    However, this is where the problem comes in.
    If I have both the AirPort turned on, and the 3G key connected to the internet, I can ONLY have either networking OR internet, not both.
    In Network System Preferences, if HUAWEI modem is top of the services pile, the internet works great, however no networking (access is smb://10.239.14.150). If AirPort is top of the services pile, networking works great, but Safari gives up the ghost on attempting to connect to the internet.
    Is there anyway, or what do I have to do, in order to have both working at the same time??
    Thanks for any help.
    Chris

    You won't get a USB modem working at the same time as Airport: this is one of the reasons USB modems are a Bad Idea. Is this a mobile dongle connecting to the mobile phone network or an ADSL modem? If the former you are stuck.
    If you have an ADSL connection you would need to buy an ADSL modem with an ethernet output. Connect the Airport to this and it will all work together.

  • What do i need to access my files from any internet connection

    I'm a bit confused, i've found some good videos on youtube on setting up the server but can't get the file shareing to work (of course the only reason i got the server). Some have told me i need a dyns routing service, so i used machighway.com but i still could not connect to my server from any internet conection outside of my home wifi. Now i've been told that i need VPN to be able to do that. So i'm hoping that someone can help clear this up and point me in the right direction. I can connect to the server using my Mac book air over my wifi (using an airport extreme). please help, i've had this server for half a year and have yet to be able to use it for what i intended.
    (i upgraded the server to OS X Mountan Lion, and upgraded the app to OS X Server)

    Here's how I did it.
    -Open a free account at no-ip.org
    -Download their app, change your server's hostname to the hostname you selected for your brand new no-ip.org account. Ideally you'd perform this step on a clean install of the Server since changing the hostname can mess a lot of the services up.
    -You'll be able to tell it's working by enabling the Websites service and visiting your new no-ip.org hostname in a web browser. You should see the default server page.
    If you have follow up questions for me, I don't read this forum much but I am on reddit a lot and I'm trying to start a new subreddit for mac servers: http://reddit.com/r/macserver . Post a thread on there.

Maybe you are looking for

  • New router and can not connect wirelessly

    Installed a new router that changed my security from a WEP to a WPA2. I have connected to the printer(7410) through ethernet cable and changed the security settings but the printer will not connect to my router. I am currently printing by ethernet ca

  • ITunesAdmin.dll error message - verify that you have access

    iTunes froze, so I uninstalled iTunes. Have made repeated attempts to download new version from iTunes website, but repeatedly get this message "Error writing to file c:\Program Files\iTunes\iTunesAdmin.dll. Verify that you have access to that direct

  • IDOC for Batch Master Conversion

    Hi, Is there any IDOC for Batch Master Conversion (Transaction : MSC2N) ? The data being maintained is in Basic data 1 and classification tabs. Regards, Esha Raj

  • Is this another change in AppleScript?

    Hello, Ok, this is a script from a book that does not work. I suspect something has changed since the book was published. I have gone ahead and tried to fix the problem on my own but even after finally getting it to compile, it still does not do the

  • How to override the dialog "Do you want to save" while closing the form?

    HI I have two blocks on the form.Master block is based on a view wheres the detail block is populated by a procedure. Even if the user doesnot change any record and trying to close the form it is still showing the default "Do you want to save" with t