Results 1 to 14 of 14
-
12-19-2011, 04:58 PM #1Newbie
- Join Date
- Dec 2010
- Posts
- 16
Can anyone help me in building a small music server?
Hello, I would like to build a music server that...
...Runs Linux MPD
...fits in a library
...feeds my DAC through coax. SPDIF
...supports even 88.2 and 176.4 KHz, plug&play (possible?)
...can be "cliented" through wi-fi - like, with a netbook or an iPod as remotes.
I have found that tiny server in the Voyage MPD store, but it would work only with USB as I/O, whereas I would like to get an SPDIF out also if I upgraded from my netbook...
All the solutions I've found up to know are either too big or too expensive.
Can anyone suggest a small motherboard in which I could put an ESI Juli@ and a wi-fi card, in a small case?
Edoardo
-
03-20-2012, 01:54 PM #2Newbie
- Join Date
- Dec 2010
- Posts
- 16
Bump
Hi, again, this may be a silly question but is it possible to make MPD switch AUTOMATICALLY between sample rates (between 44.1, 48, 88.2 KHz) or do I have to edit the conf file each time?
Edoardo
-
03-20-2012, 01:58 PM #3
It is possible
I am only a beginner, and I had to follow others suggestions. I think I should let one of the more experienced folks answer how to do it. But yes, it is possible.
"People don't want to hear the truth because they don't want their illusions destroyed." Frederich Neitzsche.
-
03-20-2012, 02:24 PM #4Newbie
- Join Date
- Dec 2010
- Posts
- 16
Thanks but...
Thank you very much... I've been looking for tutorials, but I haven't found any clue about it yet...!
Edoardo
-
03-20-2012, 02:37 PM #5
I started a thread a while back
http://www.computeraudiophile.com/content/How-set-MPD-Ubuntu-1104
Lots of good info in there, I am sure the answer is in there somewhere.
"People don't want to hear the truth because they don't want their illusions destroyed." Frederich Neitzsche.
-
03-20-2012, 02:54 PM #6Junior Member
- Join Date
- Nov 2011
- Posts
- 538
is it possible to make MPD
is it possible to make MPD switch AUTOMATICALLY between sample rates (between 44.1, 48, 88.2 KHz) or do I have to edit the conf file each time?
Do not specify any rate in alsa section of mpd.conf and MPD (just like most other players in linux as well as win ASIO) will ask the soundcard to switch to the samplerate of the current audio source.
-
03-20-2012, 03:03 PM #7Newbie
- Join Date
- Dec 2010
- Posts
- 16
thank you! how?
Hi, how shall I do this?
Shall I just delete the sample rates - the numbers specified - or the whole line?
Edoardo
-
03-20-2012, 03:18 PM #8Junior Member
- Join Date
- Nov 2011
- Posts
- 538
See
See http://linux.die.net/man/5/mpd.conf - section Optional Audio Output Parameters. E.g. for envy-based cards accepting only 32bit format:
format *:32:2
Or do not use the "format" config option at all and use output device plughw:YOURCARDNAME instead of raw access hw:YOURCARDNAME . The plug plugin will take care of all necessary conversions, most often conversion to larger bit width.
-
03-20-2012, 05:56 PM #9Newbie
- Join Date
- Dec 2010
- Posts
- 16
[I]The plug plugin will take
The plug plugin will take care of all necessary conversions
wait... I would not like the stream to be converted, but to be sent to the DAC in the original sample rate.
so shall I substitute:
----------------------------------------------------
audio_output {
format "44100:16:2" # optional
----------------------------------------------------
with
----------------------------------------------------
audio_output {
format "*:24:2" # optional
----------------------------------------------------
?
Edoardo
-
03-20-2012, 06:42 PM #10Junior Member
- Join Date
- Oct 2009
- Posts
- 567
MPD output config
Just use the following. On the Juli@ or on USB it will autoswitch the sample rate and pad the file to the correct bit depth for the interface. The audio data is untouched. You can then enable or disable the output you are not using from the control interface on the client.
Demian
audio_output {
type "alsa"
name "Analog"
device "hw:0,0" # optional
mixer_device "default" # optional
mixer_control "Master" # optional
mixer_index "0" # optional
}
#
audio_output {
type "alsa"
name "Digital"
device "hw:0,1" # optional
}
#
audio_output {
type "alsa"
name "USB"
device "hw:1" # optional
mixer_device "hw:1" # optional
mixer_control "PCM" # optional
mixer_index "0" # optional
}
Demian Martin
auraliti www.auraliti.com
Constellation Audio www.constellationaudio.com
NuForce www.nuforce.com
Monster Cable www.monstercable.com
-
03-21-2012, 05:44 AM #11Newbie
- Join Date
- Mar 2012
- Posts
- 6
I set up an HTPC using a
I set up an HTPC using a Sapphire Tech AMD Brazos set up. Dirt cheap. I had to buy a SPDIF connector (£5 and the mobo has provision for one) as it only comes with an optical o/p. Realtek chip 24bit 192khz output and the on-board graphics does blu-ray and mkv. 6 Sata connectors and USB3. Not bad for £110.
-
03-21-2012, 04:15 PM #12Junior Member
- Join Date
- Nov 2011
- Posts
- 538
wait... I would not like the
wait... I would not like the stream to be converted, but to be sent to the DAC in the original sample rate.
The plug plugin (plughw) provides the major following functions:
1. resample IF required, to the nearest samplerate supported by the card. As you see there is no need to worry about unnecessary samplerate conversion if your card supports the input samplerate natively
2. change the bit width IF required to fit that supported by the card. The plugin always tries to keep information, that is to use the largest bitwidth possible. This is actually important since e.g. Envy cards support only 32bit format.
3. change the number of channels IF required to fit the closest combination supported by the card. Although most multichannel cards support stereo mode too, it may not be the case for all. E.g. playing mono file, stereo on pure multichannel (the other added channels stay at zero), etc.
As you see, the plug plugin is bit-perfect for 24+bit cards supporting all common samplerates natively. In most cases it does only conversion to 32bit for many PCI cards.
-
03-27-2012, 05:46 AM #13Newbie
- Join Date
- Dec 2010
- Posts
- 16
Thank you
Sorry for having been away for a few days. 1audio, thank you very much, I'm going to try your configuration as soon as possible!
Cheers
Edoardo
-
03-27-2012, 05:46 AM #14Newbie
- Join Date
- Dec 2010
- Posts
- 16
Thank you
Sorry for having been away for a few days. 1audio, thank you very much, I'm going to try your configuration as soon as possible!
Cheers
Edoardo



LinkBack URL
About LinkBacks
Reply With Quote





