2007-10-18 21:33:15 +02:00
|
|
|
|
#!/bin/sh
|
2007-11-24 16:14:52 +01:00
|
|
|
|
#
|
|
|
|
|
# iptvstream.sh can be used by the VDR iptv plug-in to transcode external
|
|
|
|
|
# sources
|
|
|
|
|
#
|
2007-11-24 17:44:20 +01:00
|
|
|
|
# (C) 2007 Rolf Ahrenberg, Antti Sepp<70>l<EFBFBD>
|
2007-11-24 16:14:52 +01:00
|
|
|
|
#
|
|
|
|
|
# iptvstream.sh is free software; you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This package is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this package; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
|
|
|
|
|
# MA 02110-1301, USA.
|
2007-10-18 21:33:15 +02:00
|
|
|
|
|
2007-10-19 23:36:27 +02:00
|
|
|
|
if [ $# -ne 2 ]; then
|
|
|
|
|
logger "$0: error: Invalid parameter count '$#' $*"
|
|
|
|
|
exit 1;
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Channels.conf parameter
|
|
|
|
|
PARAMETER=${1}
|
|
|
|
|
|
|
|
|
|
# Iptv plugin listens this port
|
|
|
|
|
PORT=${2}
|
|
|
|
|
|
2007-10-20 01:08:24 +02:00
|
|
|
|
# Default bitrates for stream transcoding
|
|
|
|
|
VBITRATE=2400
|
|
|
|
|
ABITRATE=320
|
|
|
|
|
|
2007-10-20 00:44:42 +02:00
|
|
|
|
# There is a way to specify multiple URLs in the same script. The selection is
|
|
|
|
|
# then controlled by the extra parameter passed by IPTV plugin to the script
|
2007-11-22 18:36:37 +01:00
|
|
|
|
case ${PARAMETER} in
|
2007-10-20 00:44:42 +02:00
|
|
|
|
1)
|
|
|
|
|
URL=""
|
|
|
|
|
;;
|
|
|
|
|
2)
|
|
|
|
|
URL=""
|
|
|
|
|
;;
|
|
|
|
|
3)
|
|
|
|
|
URL=""
|
|
|
|
|
;;
|
|
|
|
|
*)
|
|
|
|
|
URL="" # Default URL
|
|
|
|
|
;;
|
|
|
|
|
esac
|
2007-10-18 21:33:15 +02:00
|
|
|
|
|
|
|
|
|
if [ -z "${URL}" ]; then
|
|
|
|
|
logger "$0: error: URL not defined!"
|
|
|
|
|
exit 1;
|
|
|
|
|
fi
|
|
|
|
|
|
2007-10-20 00:44:42 +02:00
|
|
|
|
# Create unique pids for the stream
|
|
|
|
|
let VPID=${PARAMETER}+1
|
|
|
|
|
let APID=${PARAMETER}+2
|
|
|
|
|
let SPID=${PARAMETER}+3
|
|
|
|
|
|
2007-11-24 16:14:52 +01:00
|
|
|
|
# Capture VLC pid for further management in IPTV plugin
|
2007-11-22 18:25:20 +01:00
|
|
|
|
vlc "${URL}" --sout "#transcode{vcodec=mp2v,acodec=mpga,vb=${VBITRATE},ab=${ABITRATE}}:standard{access=udp,mux=ts{pid-video=${VPID},pid-audio=${APID},pid-spu=${SPID}},dst=127.0.0.1:${PORT}}" --intf dummy &
|
|
|
|
|
|
2007-11-22 18:36:00 +01:00
|
|
|
|
PID=${!}
|
2007-11-22 18:25:20 +01:00
|
|
|
|
|
|
|
|
|
trap 'kill -INT ${PID} 2> /dev/null' INT EXIT QUIT TERM
|
|
|
|
|
|
|
|
|
|
# Waiting for the given PID to terminate
|
2007-11-22 18:36:00 +01:00
|
|
|
|
wait ${PID}
|