You are here
mp3DirectCut
Informations
Creator | Message |
---|---|
VolkerFroehlich
![]()
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 0 Descriptionmp3DirectCut is a lossless editor for MP3 audio files. Website. ScreenshotsSource code#!/usr/bin/env playonlinux-bash # Date : (2020-08-18 12:00) # Last revision : (2020-08-18 12:00) # Wine version used : 5.0.2 # Distribution used to test : Ubuntu 19.10 # Author : VolkerFröhlich # PlayOnLinux : 4.3.4 # Script licence : GPL3 # Program licence : Free #!/usr/bin/env playonlinux-bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="mp3DirectCut" PREFIX="mp3DirectCut" AUTHOR="Volker Fröhlich" EDITOR="Martin Pesch" EDITOR_URL="https://mpesch3.de/" EXECUTABLE_FILE="mp3DirectCut.exe" MD5="a4043199945edd9023e2274445b6d528" # Starting the script POL_SetupWindow_Init # Starting debugging API POL_Debug_Init #POL_SetupWindow_SetID # Open dialogue box POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "$AUTHOR" "$PREFIX" Set_OS "win7" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" || POL_Debug_Fatal "Unable to change directory" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then DOWNLOAD_LINK="https://kubadownload.com/site/assets/files/2452/mp3DC230.exe" DOWNLOAD_FILE=$(basename $DOWNLOAD_LINK) POL_Download "$DOWNLOAD_LINK" "$MD5" INSTALLER="$POL_System_TmpDir/$DOWNLOAD_FILE" fi [ -z "$INSTALLER" ] && exit -1 # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_Wine_WaitBefore "$TITLE" ########### # The installer consistently crashes wine and, # POL_Wine will show an error message. # However, the app then runs smoothly, so let's not bother. export POL_IgnoreWineErrors="True" POL_Wine "$INSTALLER" POL_Shortcut "$EXECUTABLE_FILE" "$TITLE" "" "" "AudioVideo;Audio;AudioVideoEditing;Music;" POL_System_TmpDelete POL_SetupWindow_Close exit |
Contributions
Filters:
ContributeMember | Message |
VolkerFroehlich | Tuesday 18 August 2020 at 12:04 |
VolkerFroehlich
![]()
|
InformationThis update has been approved by the team. Differences@@ -0,0 +1,68 @@ +#!/usr/bin/env playonlinux-bash +# Date : (2020-08-18 12:00) +# Last revision : (2020-08-18 12:00) +# Wine version used : 5.0.2 +# Distribution used to test : Ubuntu 19.10 +# Author : VolkerFröhlich +# PlayOnLinux : 4.3.4 +# Script licence : GPL3 +# Program licence : Free +#!/usr/bin/env playonlinux-bash +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="mp3DirectCut" + +PREFIX="mp3DirectCut" +AUTHOR="Volker Fröhlich" +EDITOR="Martin Pesch" +EDITOR_URL="https://mpesch3.de/" + +EXECUTABLE_FILE="mp3DirectCut.exe" +MD5="a4043199945edd9023e2274445b6d528" + +# Starting the script +POL_SetupWindow_Init + +# Starting debugging API +POL_Debug_Init + +#POL_SetupWindow_SetID +# Open dialogue box +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "$AUTHOR" "$PREFIX" +Set_OS "win7" +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" || POL_Debug_Fatal "Unable to change directory" + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" + INSTALLER="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then + DOWNLOAD_LINK="https://kubadownload.com/site/assets/files/2452/mp3DC230.exe" + DOWNLOAD_FILE=$(basename $DOWNLOAD_LINK) + POL_Download "$DOWNLOAD_LINK" "$MD5" + INSTALLER="$POL_System_TmpDir/$DOWNLOAD_FILE" +fi +[ -z "$INSTALLER" ] && exit -1 + +# Setting prefix path +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate + +POL_Wine_WaitBefore "$TITLE" +########### +# The installer consistently crashes wine and, +# POL_Wine will show an error message. +# However, the app then runs smoothly, so let's not bother. +export POL_IgnoreWineErrors="True" +POL_Wine "$INSTALLER" + +POL_Shortcut "$EXECUTABLE_FILE" "$TITLE" "" "" "AudioVideo;Audio;AudioVideoEditing;Music;" + +POL_System_TmpDelete + +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/usr/bin/env playonlinux-bash # Date : (2020-08-18 12:00) # Last revision : (2020-08-18 12:00) # Wine version used : 5.0.2 # Distribution used to test : Ubuntu 19.10 # Author : VolkerFröhlich # PlayOnLinux : 4.3.4 # Script licence : GPL3 # Program licence : Free #!/usr/bin/env playonlinux-bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="mp3DirectCut" PREFIX="mp3DirectCut" AUTHOR="Volker Fröhlich" EDITOR="Martin Pesch" EDITOR_URL="https://mpesch3.de/" EXECUTABLE_FILE="mp3DirectCut.exe" MD5="a4043199945edd9023e2274445b6d528" # Starting the script POL_SetupWindow_Init # Starting debugging API POL_Debug_Init #POL_SetupWindow_SetID # Open dialogue box POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "$AUTHOR" "$PREFIX" Set_OS "win7" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" || POL_Debug_Fatal "Unable to change directory" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then DOWNLOAD_LINK="https://kubadownload.com/site/assets/files/2452/mp3DC230.exe" DOWNLOAD_FILE=$(basename $DOWNLOAD_LINK) POL_Download "$DOWNLOAD_LINK" "$MD5" INSTALLER="$POL_System_TmpDir/$DOWNLOAD_FILE" fi [ -z "$INSTALLER" ] && exit -1 # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_Wine_WaitBefore "$TITLE" ########### # The installer consistently crashes wine and, # POL_Wine will show an error message. # However, the app then runs smoothly, so let's not bother. export POL_IgnoreWineErrors="True" POL_Wine "$INSTALLER" POL_Shortcut "$EXECUTABLE_FILE" "$TITLE" "" "" "AudioVideo;Audio;AudioVideoEditing;Music;" POL_System_TmpDelete POL_SetupWindow_Close exit RepliesTuesday 18 August 2020 at 16:28
|