The Raspberry Pi (actually mostly all models with GPIO header) can act as an FM Radio transmitter very quickly and easily. All you need is a short cable (approx. 10 cm is sufficient) and some software.
The aim of this tutorial is to use the Raspberry PI Zero as FM Radio transmitter.
You should already have read (and successful carried out) the following tutorials.
Install (or ensure they are installed) following packages.
# update system (optional)
$ sudo apt update -y && sudo apt upgrade -y
# install optional packages (optional)
$ sudo apt install -y curl
Now connect the cable to GPIO 4 and start your Raspberry Pi Zero.
# create directory and change into it
$ mkdir Radio && cd Radio
# download needed application
$ curl http://omattos.com/pifm.tar.gz -o pifm.tar.gz
# unzip archive
$ tar -zxvf pifm.tar.gz
# show help (optional)
$ ./pifm
# start simple transmit
$ sudo ./pifm sound.wav 100.0
# start advanced transmit
$ sudo ./pifm left_right.wav 100.0 22050 stereo
Note: The optimal length of the cable should be approx. 75 cm (As long as you have the necessary rights to operate).