1
0
mirror of https://github.com/rofafor/vdr-plugin-iptv.git synced 2023-10-10 11:37:03 +00:00

Changed translation bug address and tweaked an example script.

This commit is contained in:
Rolf Ahrenberg
2010-07-02 22:25:55 +03:00
parent 3f88e7a911
commit a2d8c367f6
8 changed files with 17 additions and 13 deletions

View File

@@ -44,6 +44,7 @@ case ${PARAMETER} in
URL=""
WIDTH=720
HEIGHT=576
FPS=25
;;
2)
URL=""
@@ -66,6 +67,9 @@ TRANSCODE_OPTS="vcodec=${VCODEC},acodec=${ACODEC},vb=${VBITRATE},ab=${ABITRATE}"
if [ -n "${WIDTH}" -a -n "${HEIGHT}" ] ; then
TRANSCODE_OPTS="${TRANSCODE_OPTS},width=${WIDTH},height=${HEIGHT}"
fi
if [ -n "${FPS}" ] ; then
TRANSCODE_OPTS="${TRANSCODE_OPTS},fps=${FPS}"
fi
# Create unique pids for the stream
let VPID=${PARAMETER}+1