Marrying old technology with new technology! Use of your USB FM Transmitter
Author - Harshal Chandorkar


A few days back I wanted to listen to my music collection in my kitchen and it seemed like it was impossible. The music collection hosted on my music server in basement, the boombox in kitchen had everything but bluetooth, I stopped using cd's long back and the other music player that I have that has bluetooth seemed like a pain first pairing the device with my phone and then getting it to play.

So my problem was how to play something and make it available in every room. Eureka! so what I did is I bought this $50 FM transmitter from Hi-Fast. It’s an amazing piece of hardware as it is very powerful in terms of transmitting FM signal.

Features of Hi-Fast USB Transmitter:
1. Links computer music to audio equipment wirelessly
2. USB bus-powered, no battery or AC adapter required
3. Fashionable, smart, stereo, plug& play, easy to use
4. USB-Flash-Disk-Like slim size and lightweight design
5. 7 selectable frequencies: 106.7, 106.9, 107.1, 107.3, 107.5, 107.7 and 107.9MHz
6. Whole-house-wide transmission range up to 160 feet (50 meters)** Strong ability to eliminate interference
7. USB digital audio stream, no sound card required
8. Frequency response: 20Hz – 20 KHz (Headphone/line output)
9. SNR & Dynamic range: 96dB (Headphone/line output)
10. Headphone/Speaker output power: 52mW/32 Ohm, 300mW/4 Ohm
11. Audio output jack: 3.5mm stereo female
12. Certified by USB-IF, Fully Compliant with USB Audio Specification
13. Compatible with Windows 98SE / ME / 2000 / XP, Mac OS 9 or later, and Linux with support for USB audio without additional driver.

Next Step:

So we are set here, pretty straight forward ey! Now with our headless (meaning no UI) linux system install the music player daemon. I installed a headless debian wheezy on raspberry pi.
:~$ sudo apt-get -y install mpd

Once mpd is installed configure your music directory. So open the configuration file in your favourite text editor:
:~$ sudo nano /etc/mpd/mpd.conf

..and update your music directory and other settings. Bear in mind your settings may be different then mine:
Audio 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  "PCM"           # optional
        #mixer_index    "0"             # optional
}

Equalizer (if you want to use)
audio_output {
    type        "alsa"
    name        "My ALSA EQ"
    auto_resample    "no"
    use_mmap        "yes"
    device        "plug:plugequal"
    format        "44100:16:2"    # optional
    mixer_device    "default"    # optional
    mixer_control    "PCM"        # optional
    mixer_index    "0"        # optional
}

Restart mpd thereafter.
:~$ sudo killall mpd
:~$ sudo mpd

Now on your android smartphone (sorry iOS guys you need to buy MPD client) install the MPDroid app. It should look like this:


Configure MPDroid with the mpd server ip address:


Once you connect you can start playing and controlling your music collection on your server and the best part is that it will be available on any of your FM players....across the home even outside in the backyard. There you go guys, no need to buy wifi enabled devices if you like this solution.