├── .gitignore ├── README.md ├── ap2-receiver.py ├── ap2 ├── connections │ ├── audio.py │ ├── control.py │ ├── event.py │ └── stream.py ├── pairing │ ├── hap.py │ └── srp.py ├── playfair.py └── utils.py ├── docker ├── Dockerfile ├── README.md ├── avahi-daemon.conf └── start.sh └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/README.md -------------------------------------------------------------------------------- /ap2-receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/ap2-receiver.py -------------------------------------------------------------------------------- /ap2/connections/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/ap2/connections/audio.py -------------------------------------------------------------------------------- /ap2/connections/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/ap2/connections/control.py -------------------------------------------------------------------------------- /ap2/connections/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/ap2/connections/event.py -------------------------------------------------------------------------------- /ap2/connections/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/ap2/connections/stream.py -------------------------------------------------------------------------------- /ap2/pairing/hap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/ap2/pairing/hap.py -------------------------------------------------------------------------------- /ap2/pairing/srp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/ap2/pairing/srp.py -------------------------------------------------------------------------------- /ap2/playfair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/ap2/playfair.py -------------------------------------------------------------------------------- /ap2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/ap2/utils.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/avahi-daemon.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/docker/avahi-daemon.conf -------------------------------------------------------------------------------- /docker/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/docker/start.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckdo/airplay2-receiver/HEAD/requirements.txt --------------------------------------------------------------------------------