I have a fairly large MP3 collection and I wanted a way to listen to it anywhere in my house. I thought about installing some sort of house stereo system with speakers in every room but that is a little difficult when the house has already been built.
In my Internet travels I ran across this neat little device called the WholeHouseFMTransmitter. It is basically what it’s name says it is, an FM transmitter for the entire house. With this device I connect it to my server’s audio output port and then just shuffle through my MP3 collection. I then can tune to my own personal radio station using any FM stereo around the house or in the garage. Actually I can receive my radio station within a block of my house while the transmitter is in my basement next to my big metal furnace. I’ve thought about moving the transmitter to the attic to get a greater range but it works just fine where it is.
The transmitter is pretty small. It’s measurements are 3 3/8″ x 2 1/2″ x 3/4″. The front of the transmitter has a power button and some logo stuff.
The power is supplied through a power jack on the side. It uses 5VDC I couldn’t see any current rating on their website. It has four different ways to power it, shown below. I use the USB power adapter so it is power directly from my server. The USB power adapter is retractable, I think it is only about 3-4 feet long which I think it should be longer but it works.
|
|
Car Adapter (12/24V DC) |
Computer USB Adapter |
Plus, batteries (takes 3 “AA” batteries and will run about 110 hours)
|
The audio input is a 1/8″ (3.5mm) headphone jack. This is very nice since you can use about any audio source, such as output from computer, ipod or any MP3 player.
On the other side there is a set of three dip switches. These are used to select the frequency or FM radio station the transmitter broadcasts on. If you set the frequency to the same channel as a nearby radio station you wont get as good of performance. You should set it to an unused channel between radio stations.
On the back of the transmitter is the channel selection guide. This shows the dip switch positions to select the desired FM frequency or channel.
So I’ve got this hooked up to my server computer. I’ve set my server to automatically start my favorite MP3 player software Winamp when windows loads. The only problem I found was that after running constantly for a couple days Winamp would tend to freeze causing the MP3 currently being played to do a 1 second loop which sounds terrible. To solve this I decided to restart my computer every night. Being a big fan of batch files I created a batch file to restart my computer. My batch file only contains one line:
shutdown /r /t 60 /f /c “Restarting for daily reboot…”
The flags I used are as follows:
- /r - Shutdown and restart the computer
- /t xxx - Set the time0out period before shutdown to xxx seconds. The valid range is 0-600, with a default of 30.
- /f - Force running applications to close without forewarning users. (The /t flag also implies the /f flag but I put it in anyway just for kicks)
- /c “comment” - Coments on the reason for the restart or shutdown.
I use a neat little windows utility called Task Scheduler to schedule my server restart in the middle of the night.
How To Schedule Tasks in Windows XP
While scheduling tasks you basically just browse for the batch file then set when you want the task to run and how often.