EURO2012-Multiplexer (sinnvoll in Büros)
Man braucht:
- OSX/Linux/whatever
- aktueller VLC (am besten mit cvlc-Kommandozeilenclient)
Folgendes Script (vlcproxy.sh)
#!/bin/bash
case $(uname -s) in
Darwin)
VLC_BINARY=”/Applications/VLC.app/Contents/MacOS/VLC”
;;
*)
VLC_BINARY=$(which vlc)
;;
esac
VLC=”${VLC_BINARY} –intf=rc –sout-ffmpeg-strict=-2″
CHANNELS=”"
case $1 in
ard|ARD)
PLAYLIST=http://metafiles.gl-systemhaus.de/wdr/ARD/ARD_Event2_geo.m3u8 #original aus iOS-App von Squid-Log
PLAYLIST=http://wdr_ios_fsev_geo-i.akamaihd.net/hls/live/201764/1/playlist1x.m3u8
$VLC $PLAYLIST –sout ‘#standard{mux=ts,dst=:8181,access=http}’
;;
zdf|ZDF)
;;
*)
echo “USAGE: $0 ard oder $0 zdf”
;;
esac
Danach auf dem Client die URL im VLC öffnen
http://SERVERIP:8181
Pingback: WM-Stream von ARD/ZDF multiplexen/verteilen (update) | boeckoblog
Pingback: VLC-Proxy für Live-Streams von ARD/ZDF (auch Fußball EM 2012) | Linux und Ich