Anthony,
I enabled all log levels and reduced the amount of files to 10 as suggested, then dropped the songs3.db and the log file, then paired the remote with my NAS again and faced the very same situation as before (which was expected).
Looking at the log I see the following relevant:
- Code: Select all
[2010-12-17 13:26:13] player: Player queue query returned 10 items
[2010-12-17 13:26:13] player: Added song id 9 (As Good As New)
[2010-12-17 13:26:13] player: Added song id 8 (Voulez-vous)
[2010-12-17 13:26:13] player: Added song id 7 (I Have a Dream)
[2010-12-17 13:26:13] player: Added song id 5 (Angeleyes)
[2010-12-17 13:26:13] player: Added song id 10 (The King Has Lost His Crown)
[2010-12-17 13:26:13] player: Added song id 2 (Does Your Mother Know)
[2010-12-17 13:26:13] player: Added song id 1 (If it Wasn't For the Nights)
[2010-12-17 13:26:13] player: Added song id 3 (Chiquitita)
[2010-12-17 13:26:13] player: Added song id 6 (Lovers Live a Little Longer)
[2010-12-17 13:26:13] player: Added song id 4 (Kisses of Fire)
[2010-12-17 13:26:13] db: End of query results
[2010-12-17 13:26:13] db: Running query 'SELECT * FROM files WHERE id = 5;'
[2010-12-17 13:26:13] player: Opening /share/MD0_DATA/Download/TestiTunes/ABBA/Voulez-vous/04 Angeleyes.mp3
[2010-12-17 13:26:13] laudio: cannot find card '0'[2010-12-17 13:26:13] laudio: function snd_func_card_driver returned error: No such file or directory[2010-12-17 13:26:13] laudio: error evaluating strings[2010-12-17 13:26:13] laudio: function snd_func_concat returned error: No such file or directory[2010-12-17 13:26:13] laudio: error evaluating name[2010-12-17 13:26:13] laudio: function snd_func_refer returned error: No such file or directory[2010-12-17 13:26:13] laudio: Evaluate error: No such file or directory[2010-12-17 13:26:13] laudio: Unknown PCM default[2010-12-17 13:26:13] laudio: Could not open playback device: No such file or directory
[2010-12-17 13:26:13] player: Could not open local audio
[2010-12-17 13:26:13] dacp: Could not start playback
[2010-12-17 13:26:13] player: Player status: stopped
So basically it laudiop cannot open the local audio device. That's no surprise, as there is none... That is why I specified my Airtunes speakers in the S50iTunes script:
- Code: Select all
# Local audio output
# audio {
# AirTunes name - used in the speaker list in Remote
# nickname = "$HOSTNAME"
# Audio device name for local audio output
# card = "default"
# }
# Airport Express device
apex "BOSE" {
# AirTunes password
password = "b0se321"
}
EOF
)
I then tried again, re-enabling the local audio with default values...
- Code: Select all
# Local audio output
audio {
# AirTunes name - used in the speaker list in Remote
nickname = "$HOSTNAME"
# Audio device name for local audio output
# card = "default"
}
Which lead to the same results...
- Code: Select all
[2010-12-17 13:34:54] db: Running query 'SELECT * FROM files WHERE id = 9;'
[2010-12-17 13:34:54] player: Opening /share/MD0_DATA/Download/TestiTunes/ABBA/Voulez-vous/01 As Good As New.mp3
[2010-12-17 13:34:55] laudio: cannot find card '0'[2010-12-17 13:34:55] laudio: function snd_func_card_driver returned error: No such file or directory[2010-12-17 13:34:55] laudio: error evaluating strings[2010-12-17 13:34:55] laudio: function snd_func_concat returned error: No such file or directory[2010-12-17 13:34:55] laudio: error evaluating name[2010-12-17 13:34:55] laudio: function snd_func_refer returned error: No such file or directory[2010-12-17 13:34:55] laudio: Evaluate error: No such file or directory[2010-12-17 13:34:55] laudio: Unknown PCM default[2010-12-17 13:34:55] laudio: Could not open playback device: No such file or directory
[2010-12-17 13:34:55] player: Could not open local audio
[2010-12-17 13:34:55] dacp: Player returned an error for start after pause
The same happens if I uncomment the Airport Express section and use the 'card = "default"' string for local audio.
So, as I do not have local audio (as we all don't have it I would say), I guess I need to use the Airport Express... Any idea?
Thanks, Chris