Skip to content

Instantly share code, notes, and snippets.

@hfreire
Last active December 24, 2017 13:20
Show Gist options
  • Save hfreire/5c558dc35ee842c32bda1656f87f302b to your computer and use it in GitHub Desktop.
Save hfreire/5c558dc35ee842c32bda1656f87f302b to your computer and use it in GitHub Desktop.
AirPlay to Kodi with cURL
#!/bin/sh
KODI_HOSTNAME=$1
HLS_URL=$2
curl -X \
-H "Content-Type: text/parameters" \
-d "Content-Location: $HLS_URL" \
"http://$KODI_HOSTNAME:36667/play" -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment