Compare commits

...

10 commits

4 changed files with 13 additions and 4 deletions

Binary file not shown.

View file

@ -10,7 +10,7 @@
CLIENTVERSION=$(get_key_value /var/packages/synOTR/INFO version)
set -E -o functrace # for function failure()
DevChannel="Release" # beta [2019-10-16]
DevChannel="Release" # beta [2023-06-11]
# ---------------------------------------------------------------------------------
# GRUNDKONFIGRUATIONEN / INDIVIDUELLE ANPASSUNGEN / Standardwerte |
@ -329,7 +329,7 @@ sec_to_time()
MovieDB_query()
{
#########################################################################################
# Diese Funktion sucht auf theTVDB.com nach Serieninformationen #
# Diese Funktion sucht auf MovieDB.com nach Filminformationen #
#########################################################################################
echo -e
@ -660,7 +660,12 @@ if [ $decoderactiv = "on" ] && [ ! -z "$filetest" ] ; then
echo -n " "; date
if [ $machinetyp = "x86_64" ]; then
otrdecoderLOG=$(otrdecoder64 -q -i "$i" -o "$DECODIR" -e "$OTRuser" -p "$OTRpw" 2>&1)
if [ "$(synogetkeyvalue /etc.defaults/VERSION buildnumber)" -ge 60000 ]; then
# verwende passenden Decoder ab DSM7.2:
otrdecoderLOG=$(otrdecoder64_72 -q -i "$i" -o "$DECODIR" -e "$OTRuser" -p "$OTRpw" 2>&1)
else
otrdecoderLOG=$(otrdecoder64 -q -i "$i" -o "$DECODIR" -e "$OTRuser" -p "$OTRpw" 2>&1)
fi
elif [ $machinetyp = "i686" ]; then
otrdecoderLOG=$(otrdecoder32 -q -i "$i" -o "$DECODIR" -e "$OTRuser" -p "$OTRpw" 2>&1)
elif [ `echo $machinetyp | grep "armv" ` ] ; then

View file

@ -1,5 +1,9 @@
Release Notes
4.2.2 (2023-06-11)
IMPLEMENTIERUNGEN:
- OTR-Decoder (x86_64) für DSM7.2 ergänzt
4.2.1 (2021-05-11)
IMPLEMENTIERUNGEN:
- OTR-Decoder (x86_64) aktualisiert

View file

@ -1,6 +1,6 @@
package="synOTR"
displayname="synOTR"
version="4.2.1"
version="4.2.2"
thirdparty="yes"
description="SynOTR provides a workflow for TV recordings from onlineTVrecorder (OTR / https://onlinetvrecorder.com) for Synology NAS. synOTR performs *decoding *AC3-muxing (BETA) *cutting *MP4 conversion and *renaming (including Series information from www.thetvdb.com and www.otr-serien.de). onlineTVrecorder (OTR) is the free video recorder on the Internet that records almost all broadcasts from around 100 TV stations in Germany, USA, UK and other countries around the clock."
description_enu="SynOTR provides a workflow for TV recordings from onlineTVrecorder (OTR / https://onlinetvrecorder.com) for Synology NAS. synOTR performs *decoding *AC3-muxing (BETA) *cutting *MP4 conversion and *renaming (including Series information from www.thetvdb.com and www.otr-serien.de). onlineTVrecorder (OTR) is the free video recorder on the Internet that records almost all broadcasts from around 100 TV stations in Germany, USA, UK and other countries around the clock."