TS-Doctor 2
Informations
| Créateur | Messages |
|---|---|
dvbtecman
|
AttentionThis installer is a beta script. It means that it might not work as expected InformationsPlate-formes : Retours d'expérience2 0 DescriptionThe TS-Doctor is a universal tool for processing, cutting and repair of recordings from Sat-, Cable and DVB-T Receivers. It is simple to operate and its functions are quick and reliable. Website. Without a license file, there is a 30 days trial time and a 500 MB file size limitation. Code source#!/bin/bash
#
# CHANGELOG
# [dvbtecman] (2016)
# First script
# [Dadu042] (2020-01-01)
# Wine 1.8.2 -> 2.22
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="TS-Doctor 2"
PREFIX="TSDoctor2"
WINEVERSION="2.22"
POL_SetupWindow_Init
POL_SetupWindow_SetID
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Cypheros" "http://www.cypheros.de/" "dvbtechman" "$PREFIX"
Set_OS winxp
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Install dependencies
POL_Call POL_Install_quartz
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "Please select the installation file to run." "TS-Doctor 2.0"
POL_SetupWindow_wait "Installation in progress." "TS-Doctor 2.0 installation"
POL_Wine "$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_System_TmpCreate "tsdoctor"
POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \
"English|Deutsch|Français" "|"
case "$APP_ANSWER" in
"English")
DOWNLOAD_LINK="http://www.cypheros.de/download.php?f=TSDoctor2_Eng.exe";;
"Deutsch")
DOWNLOAD_LINK="http://www.cypheros.de/download.php?f=TSDoctor2_Ger.exe";;
"Français")
DOWNLOAD_LINK="http://www.cypheros.de/download.php?f=TSDoctor2_Fre.exe";;
*)
exit 1;;
esac
cd "$POL_System_TmpDir"
POL_Download "$DOWNLOAD_LINK"
POL_SetupWindow_wait "Installation in progress." "TS-Doctor 2.0 installation"
EXE_FILE="${DOWNLOAD_LINK##*/}" # Get everything after last slash.
mv "$EXE_FILE" "$POL_System_TmpDir/TSDoctor2_install.exe"
POL_Wine "$POL_System_TmpDir/TSDoctor2_install.exe"
POL_System_TmpDelete
fi
POL_Shortcut "TSDoctor.exe" "TS-Doctor 2.0"
POL_SetupWindow_Close
exit
|
Contributions
Filters:
Contribuer| Membre | Messages |
| nexttoyou | Mercredi 3 Février 2021 à 18:17 |
nexttoyou
|
Messages
While this script finally installs TS-Doctor 2.x again if using PlayOnMac 4.4.2 a new problem shows up in combination with the DirectX 9.0c runtime. TS-Doctor refuses to show any videos (which complicates cutting them quite a bit). During the first run of the program a small error window is shown indicating that the DirectShow implementation of Wine would not be compatible with TS-Doctor and that one should install the DirectX 9.0c runtime using Winetricks or CrossOver.
Unfortunately, the download URL for DirectX is not valid anymore (http://download.microsoft.com/download/E/E/1/EE17FF74-6C45-4575-9CF4-7FC2597ACD18/directx_feb2010_redist.exe). Copying the original directx_feb2010_redist.exe file coming from a backup to $home/Library/PlayOnMac/ressources doesn’t help either, so I’m stuck. Would anybody with a much better knowledge than myself be able to help me out there as using TS-Doctor 2 under a CrossOver trial works quite well?
Addendum: macOS Big Sur (11.2) on an iMac 2017 (Intel Core i7) RéponsesEdité par nexttoyou |
| Dadu042 | Jeudi 2 Janvier 2020 à 8:49 |
|
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -1,10 +1,18 @@ #!/bin/bash +# +# CHANGELOG +# [dvbtecman] (2016) +# First script +# [Dadu042] (2020-01-01) +# Wine 1.8.2 -> 2.22 + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" -TITLE="TS-Doctor 2.0" +TITLE="TS-Doctor 2" + PREFIX="TSDoctor2" -WINEVERSION="1.8.2" - +WINEVERSION="2.22" + POL_SetupWindow_Init POL_SetupWindow_SetID POL_Debug_Init Nouveau code source#!/bin/bash
#
# CHANGELOG
# [dvbtecman] (2016)
# First script
# [Dadu042] (2020-01-01)
# Wine 1.8.2 -> 2.22
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="TS-Doctor 2"
PREFIX="TSDoctor2"
WINEVERSION="2.22"
POL_SetupWindow_Init
POL_SetupWindow_SetID
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Cypheros" "http://www.cypheros.de/" "dvbtechman" "$PREFIX"
Set_OS winxp
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Install dependencies
POL_Call POL_Install_quartz
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "Please select the installation file to run." "TS-Doctor 2.0"
POL_SetupWindow_wait "Installation in progress." "TS-Doctor 2.0 installation"
POL_Wine "$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_System_TmpCreate "tsdoctor"
POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \
"English|Deutsch|Français" "|"
case "$APP_ANSWER" in
"English")
DOWNLOAD_LINK="http://www.cypheros.de/download.php?f=TSDoctor2_Eng.exe";;
"Deutsch")
DOWNLOAD_LINK="http://www.cypheros.de/download.php?f=TSDoctor2_Ger.exe";;
"Français")
DOWNLOAD_LINK="http://www.cypheros.de/download.php?f=TSDoctor2_Fre.exe";;
*)
exit 1;;
esac
cd "$POL_System_TmpDir"
POL_Download "$DOWNLOAD_LINK"
POL_SetupWindow_wait "Installation in progress." "TS-Doctor 2.0 installation"
EXE_FILE="${DOWNLOAD_LINK##*/}" # Get everything after last slash.
mv "$EXE_FILE" "$POL_System_TmpDir/TSDoctor2_install.exe"
POL_Wine "$POL_System_TmpDir/TSDoctor2_install.exe"
POL_System_TmpDelete
fi
POL_Shortcut "TSDoctor.exe" "TS-Doctor 2.0"
POL_SetupWindow_Close
exit
Réponses |
| herregaarden | Mercredi 18 Janvier 2017 à 13:31 |
herregaarden
|
MessagesThank you for this, it works on macOS 10.12.2, POM 4.2.10 and a registered version of TS-Doctor 2.0.64. But i am having a bit of a problem. After clicking on the +1sec button a few times the program crashes.
Error log: Unhandled exception: page fault on read access to 0x00000019 in 32-bit code (0x0a651ea2). RéponsesVendredi 2 Aoüt 2019 à 18:03
|
| dvbtecman | Vendredi 12 Aoüt 2016 à 11:03 |
dvbtecman
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesFix for not working download. Differences@@ -0,0 +1,56 @@
+#!/bin/bash
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+TITLE="TS-Doctor 2.0"
+PREFIX="TSDoctor2"
+WINEVERSION="1.8.2"
+
+POL_SetupWindow_Init
+POL_SetupWindow_SetID
+POL_Debug_Init
+
+POL_SetupWindow_presentation "$TITLE" "Cypheros" "http://www.cypheros.de/" "dvbtechman" "$PREFIX"
+
+Set_OS winxp
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINEVERSION"
+
+# Install dependencies
+POL_Call POL_Install_quartz
+
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+
+if [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+ POL_SetupWindow_browse "Please select the installation file to run." "TS-Doctor 2.0"
+ POL_SetupWindow_wait "Installation in progress." "TS-Doctor 2.0 installation"
+ POL_Wine "$APP_ANSWER"
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+ POL_System_TmpCreate "tsdoctor"
+ POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \
+ "English|Deutsch|Français" "|"
+ case "$APP_ANSWER" in
+ "English")
+ DOWNLOAD_LINK="http://www.cypheros.de/download.php?f=TSDoctor2_Eng.exe";;
+ "Deutsch")
+ DOWNLOAD_LINK="http://www.cypheros.de/download.php?f=TSDoctor2_Ger.exe";;
+ "Français")
+ DOWNLOAD_LINK="http://www.cypheros.de/download.php?f=TSDoctor2_Fre.exe";;
+ *)
+ exit 1;;
+ esac
+
+ cd "$POL_System_TmpDir"
+ POL_Download "$DOWNLOAD_LINK"
+ POL_SetupWindow_wait "Installation in progress." "TS-Doctor 2.0 installation"
+ EXE_FILE="${DOWNLOAD_LINK##*/}" # Get everything after last slash.
+ mv "$EXE_FILE" "$POL_System_TmpDir/TSDoctor2_install.exe"
+ POL_Wine "$POL_System_TmpDir/TSDoctor2_install.exe"
+ POL_System_TmpDelete
+fi
+
+POL_Shortcut "TSDoctor.exe" "TS-Doctor 2.0"
+
+POL_SetupWindow_Close
+exit
Nouveau code source#!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="TS-Doctor 2.0"
PREFIX="TSDoctor2"
WINEVERSION="1.8.2"
POL_SetupWindow_Init
POL_SetupWindow_SetID
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Cypheros" "http://www.cypheros.de/" "dvbtechman" "$PREFIX"
Set_OS winxp
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Install dependencies
POL_Call POL_Install_quartz
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "Please select the installation file to run." "TS-Doctor 2.0"
POL_SetupWindow_wait "Installation in progress." "TS-Doctor 2.0 installation"
POL_Wine "$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_System_TmpCreate "tsdoctor"
POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \
"English|Deutsch|Français" "|"
case "$APP_ANSWER" in
"English")
DOWNLOAD_LINK="http://www.cypheros.de/download.php?f=TSDoctor2_Eng.exe";;
"Deutsch")
DOWNLOAD_LINK="http://www.cypheros.de/download.php?f=TSDoctor2_Ger.exe";;
"Français")
DOWNLOAD_LINK="http://www.cypheros.de/download.php?f=TSDoctor2_Fre.exe";;
*)
exit 1;;
esac
cd "$POL_System_TmpDir"
POL_Download "$DOWNLOAD_LINK"
POL_SetupWindow_wait "Installation in progress." "TS-Doctor 2.0 installation"
EXE_FILE="${DOWNLOAD_LINK##*/}" # Get everything after last slash.
mv "$EXE_FILE" "$POL_System_TmpDir/TSDoctor2_install.exe"
POL_Wine "$POL_System_TmpDir/TSDoctor2_install.exe"
POL_System_TmpDelete
fi
POL_Shortcut "TSDoctor.exe" "TS-Doctor 2.0"
POL_SetupWindow_Close
exit
Réponses |
| dvbtecman | Vendredi 12 Aoüt 2016 à 10:07 |
dvbtecman
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,56 @@
+#!/bin/bash
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+TITLE="TS-Doctor 2.0"
+PREFIX="TSDoctor2"
+WINEVERSION="1.8.2"
+
+POL_SetupWindow_Init
+POL_SetupWindow_SetID
+POL_Debug_Init
+
+POL_SetupWindow_presentation "$TITLE" "Cypheros" "http://www.cypheros.de/" "dvbtechman" "$PREFIX"
+
+Set_OS winxp
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINEVERSION"
+
+# Install dependencies
+POL_Call POL_Install_quartz
+
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+
+if [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+ POL_SetupWindow_browse "Please select the installation file to run." "TS-Doctor 2.0"
+ POL_SetupWindow_wait "Installation in progress." "TS-Doctor 2.0 installation"
+ POL_Wine "$APP_ANSWER"
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+ POL_System_TmpCreate "tsdoctor"
+ POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \
+ "English|Deutsch|Français" "|"
+ case "$APP_ANSWER" in
+ "English")
+ "http://www.cypheros.de/download.php?f=TSDoctor2_Eng.exe";;
+ "Deutsch")
+ "http://www.cypheros.de/download.php?f=TSDoctor2_Ger.exe";;
+ "Français")
+ "http://www.cypheros.de/download.php?f=TSDoctor2_Fre.exe";;
+ *)
+ exit 1;;
+ esac
+
+ cd "$POL_System_TmpDir"
+ POL_Download "$DOWNLOAD_LINK"
+ POL_SetupWindow_wait "Installation in progress." "TS-Doctor 2.0 installation"
+ EXE_FILE="${DOWNLOAD_LINK##*/}" # Get everything after last slash.
+ mv "$EXE_FILE" "$POL_System_TmpDir/TSDoctor2_install.exe"
+ POL_Wine "$POL_System_TmpDir/TSDoctor2_install.exe"
+ POL_System_TmpDelete
+fi
+
+POL_Shortcut "TSDoctor.exe" "TS-Doctor 2.0"
+
+POL_SetupWindow_Close
+exit
Nouveau code source#!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="TS-Doctor 2.0"
PREFIX="TSDoctor2"
WINEVERSION="1.8.2"
POL_SetupWindow_Init
POL_SetupWindow_SetID
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Cypheros" "http://www.cypheros.de/" "dvbtechman" "$PREFIX"
Set_OS winxp
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Install dependencies
POL_Call POL_Install_quartz
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "Please select the installation file to run." "TS-Doctor 2.0"
POL_SetupWindow_wait "Installation in progress." "TS-Doctor 2.0 installation"
POL_Wine "$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_System_TmpCreate "tsdoctor"
POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \
"English|Deutsch|Français" "|"
case "$APP_ANSWER" in
"English")
"http://www.cypheros.de/download.php?f=TSDoctor2_Eng.exe";;
"Deutsch")
"http://www.cypheros.de/download.php?f=TSDoctor2_Ger.exe";;
"Français")
"http://www.cypheros.de/download.php?f=TSDoctor2_Fre.exe";;
*)
exit 1;;
esac
cd "$POL_System_TmpDir"
POL_Download "$DOWNLOAD_LINK"
POL_SetupWindow_wait "Installation in progress." "TS-Doctor 2.0 installation"
EXE_FILE="${DOWNLOAD_LINK##*/}" # Get everything after last slash.
mv "$EXE_FILE" "$POL_System_TmpDir/TSDoctor2_install.exe"
POL_Wine "$POL_System_TmpDir/TSDoctor2_install.exe"
POL_System_TmpDelete
fi
POL_Shortcut "TSDoctor.exe" "TS-Doctor 2.0"
POL_SetupWindow_Close
exit
RéponsesVendredi 12 Aoüt 2016 à 11:06
|
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com
Installer ce programme