Skip to content

Instantly share code, notes, and snippets.

@kaimi
Last active August 29, 2015 14:02
Show Gist options
  • Save kaimi/6fa74805c82000360325 to your computer and use it in GitHub Desktop.
Save kaimi/6fa74805c82000360325 to your computer and use it in GitHub Desktop.
tv livestream wrapper script; requires livestreamer and vlc
#!/usr/bin/env bash
case "$1" in
'ard')
vlc http://daserste_live-lh.akamaihd.net/i/daserste_de@91204/master.m3u8
;;
'phoenix')
vlc http://hstreaming.zdf.de/encoder/phoenix_vh.mov
;;
'zdf')
# vlc http://zdf_hds_de-f.akamaihd.net/i/de14_v1@147090/master.m3u8
livestreamer http://www.zdf.de/ZDFmediathek/beitrag/live/1822600/Das-ZDF-im-Livestream\#/beitrag/live/1822600/Das-ZDF-im-Livestream best
;;
*)
echo \
'mögliche Programme:
– ard
– phoenix
– zdf'
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment