在树莓派上搭建airplay接收器

在树莓派上安装过dlna

这样在手机上安装dlna就可以查看树莓派音频视频和图片了

可是树莓派上却没有dlna客户端,也接无法将手机上的音乐推送到树莓派上播放

于是百度发现有airplay,这样iphone手机在播放时,可以选择在树莓派上播放,比较方便

首先,我們要安裝一些依赖然后安裝 Shairport

```
sudo apt-get install build-essential git autoconf libtool \
libdaemon-dev libasound2-dev libpopt-dev libconfig-dev \
avahi-daemon libavahi-client-dev \
libssl-dev
```

接着

```
git clone https://github.com/mikebrady/shairport-sync.git
cd shairport-sync && autoreconf -i -f
./configure --with-alsa --with-stdout --with-pipe --with-avahi --with-ssl=openssl --with-metadata --with-systemd
```
接下來
```
make install
```

创建用户
```
groupadd -r shairport-sync
useradd -r -M -g shairport-sync -s /usr/bin/nologin -G audio shairport-sync
```

添加到systemctl中

```
systemctl enable shairport-sync
systemctl start shairport-sync
```
完成后如果你的 iphone 和 raspberry Pi 在同一个局域网,这个时候在手机上播放音乐,可以通过airplay在树莓派上播放了

    A+
发布日期:2021年03月14日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: