The forum

[Script] Mp3tag -- Update to V2.59a

Original script created by Quentin PÂRIS

Author Replies
anonym0uz Wednesday 14 May 2014 at 10:34
anonym0uzAnonymous

Hi all,

I'm very new to Linux and updating this script was not that difficult than I thought. ;)
I edited the script of Quentin PÂRIS to the actual version of mp3tag.

I tested it with elementaryOS, PlayOnLinux 4.0.22 and Wine 1.4.1 in a VirtualBox configuration, as it was used before and I got no errors or some unusual behavior.

I hope you'll enjoy it like I do. This tool is a nearly perfect ID3-Tag-Tool for a lot of different audio formats.

[code language=playonlinux]
#!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Mp3tag"
PREFIX="mp3tag"
FILE="mp3tagv259asetup.exe"
MD5="cdfcfc9d6652e33b337f0dc6ee2af391"

POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.mp3tag.de/" "Tinou" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate 1.4.1
Set_OS winxp
POL_Download "http://download.mp3tag.de/$FILE" "$MD5"

POL_Call POL_Install_LunaTheme

POL_Wine_WaitBefore "$TITLE"
POL_Wine "$FILE"

POL_Shortcut "mp3tag.exe" "$TITLE"
POL_SetupWindow_Close
exit
[/code]

Edited by anonym0uz

petch Wednesday 14 May 2014 at 11:41
petch

Hi,
Ok it just updates the URL and the expected hash, so I updated the script :)
anonym0uz Wednesday 14 May 2014 at 12:19
anonym0uzAnonymous

Thank you :) Yeah that is the only thing.