TS-Doctor 2.0 Video Editor (Trial)
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érience4 0 DescriptionThe TS-Doctor is a universal tool for processing and repair of pictures from Sat-, Cable and DVB-T Receivers. It is simple to operate and its functions are quick and reliable. The TS-Doctor offers an easy-to-operate cropping function and together with the automatic advertizing recognition feature, makes it child’s play to remove bothersome advertizing interruptions from TV-pictures. The TS-Doctor checks and repairs your TV-pictures and makes sure that they can be easily processed and displayed on today’s media players. It can also handle pictures and formats that other programs often cannot read. The TS-Doctor can also handle HDTV-pictures. HDTV means high-resolution television with brilliant picture and sound quality. In spite of large data files associated with HDTV, the TS-Doctor operates very quickly and without loss of picture and sound quality. The TS-Doctor can drastically reduce the required file size by removing unneeded file content and filler data. Depending on the receiver and the picture, reductions of up to 70% of the file size can be achieved while retaining the same picture and sound quality.
30 days of free trial, limited to 500 MB output size. 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 |
Contributions
Filters:
ContribuerMembre | Messages |
dvbtecman | Mardi 31 Mai 2016 à 23:36 |
dvbtecman
|
InformationCette mise à jour a été acceptée par l'équipe MessagesNew installation for local or download version. Now for trial and registered version installation. If the license file and installation file are in the same directory, TS-Doctor will be installed as full registered version.
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 \ No newline at end of file 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éponses |
dvbtecman | Mardi 31 Mai 2016 à 16:31 |
dvbtecman
|
|
dvbtecman | Dimanche 29 Mai 2016 à 17:25 |
dvbtecman
|
|
dvbtecman | Dimanche 29 Mai 2016 à 17:23 |
dvbtecman
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,48 @@ +#!/bin/bash +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" +TITLE="TS-Doctor 2.0 Trial" +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_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 + +POL_System_TmpCreate "tsdoctor" + +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 + +POL_Shortcut "TSDoctor.exe" "TS-Doctor 2.0" + +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/bin/bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="TS-Doctor 2.0 Trial" 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_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 POL_System_TmpCreate "tsdoctor" 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 POL_Shortcut "TSDoctor.exe" "TS-Doctor 2.0" POL_SetupWindow_Close exit Réponses |
dvbtecman | Dimanche 29 Mai 2016 à 16:37 |
dvbtecman
|
Messages#!/bin/bash POL_SetupWindow_presentation "$TITLE" "Cypheros" "http://www.cypheros.de/" "dvbtechman" "$PREFIX" # Install dependencies POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ Réponses |
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