Traktor Pro 3

Informations

Créateur Messages
Dadu042

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 7561
Wine: 3.20

Retours d'expérience

Description

This is a DJ software. Wikipedia.

 

Script made on Ubuntu 18.04 (64 bit).

Captures d'écran

MiniatureMiniature

Code source

#!/bin/bash
# Date : (2020-01-18)
# Last revision : see changelog
# Distribution used to test : Ubuntu 18.04 (64-bit)
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.12
 
# CHANGELOG
# [Villarleg] (2020-01-18)
#   Wine and windows version updated, Arch 64bit (Support Traktor Pro 3).
# [Dadu042] (2020-01-19)
#   Add POL_Shortcut category.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
PREFIX="TraktorPro3"
WINEVERSION="3.20"
TITLE="Traktor Pro 3"
EDITOR="Native Instruments"
GAME_URL="http://www.native-instruments.com"
AUTHOR="RoninDusette"
  
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
  
POL_Debug_Init
  
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
  
# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
POL_System_SetArch "amd64"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
  
# Configuration
Set_OS "win10"
Set_SoundDriver "alsa"
  
# Installation
POL_SetupWindow_message "$(eval_gettext 'During installation, please UNCHECK all drivers for the Native Instruments controllers or installation will fail.')" "$TITLE"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
  
# Create Shortcuts
POL_Shortcut "Traktor.exe" "$TITLE" "" "" "Audio;"
  
POL_SetupWindow_message "$(eval_gettext 'ATTENTION: You need to DISABLE MULTI-CORE PROCESSOR SUPPORT in the Traktors settings for correct functioning or decks will get stuck.\n\n   After you run the program for the first time, a setup wizard will help you setup controller and sound card settings, after you finished the wizard, you need to click on the Gear Icon to open Traktor Preferences screen and uncheck Enable Multi-Core Processor Support in Audio Setup section.\n\nNOTICE: For low-latency audio, look into WineASIO.\n\nYour MIDI controllers should work as expected.')" "$TITLE"
  
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
zerinol Vendredi 29 Mai 2020 à 3:53
zerinol

Messages

I'm on ubuntu 18.04, with bspwm. Ive removed gnome and gdm.

 

by the end of the log I get this:

 

003c:err:module:import_dll Library Qt5Quick.dll (which is needed by L"C:\\Program Files\\Native Instruments\\Traktor Pro 3\\Backup\\Traktor 3.0.0.31\\Traktor.exe") not found
003c:err:module:import_dll Library Qt5Qml.dll (which is needed by L"C:\\Program Files\\Native Instruments\\Traktor Pro 3\\Backup\\Traktor 3.0.0.31\\Traktor.exe") not found
003c:err:module:import_dll Library Qt5Gui.dll (which is needed by L"C:\\Program Files\\Native Instruments\\Traktor Pro 3\\Backup\\Traktor 3.0.0.31\\Traktor.exe") not found
003c:err:module:import_dll Library Qt5Core.dll (which is needed by L"C:\\Program Files\\Native Instruments\\Traktor Pro 3\\Backup\\Traktor 3.0.0.31\\Traktor.exe") not found
003c:err:module:attach_dlls Importing dlls for L"C:\\Program Files\\Native Instruments\\Traktor Pro 3\\Backup\\Traktor 3.0.0.31\\Traktor.exe" failed, status c0000135
001a:fixme:service:handle_shutdown_msg service should be able to delay shutdown
001d:fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB!

 

Réponses

Dadu042 Dimanche 19 Janvier 2020 à 9:39
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

Differences

@@ -0,0 +1,56 @@
+#!/bin/bash
+# Date : (2020-01-18)
+# Last revision : see changelog
+# Distribution used to test : Ubuntu 18.04 (64-bit)
+# Author : RoninDusette
+# Licence : GPLv3
+# PlayOnLinux: 4.2.12
+ 
+# CHANGELOG
+# [Villarleg] (2020-01-18)
+#   Wine and windows version updated, Arch 64bit (Support Traktor Pro 3).
+# [Dadu042] (2020-01-19)
+#   Add POL_Shortcut category.
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+  
+PREFIX="TraktorPro3"
+WINEVERSION="3.20"
+TITLE="Traktor Pro 3"
+EDITOR="Native Instruments"
+GAME_URL="http://www.native-instruments.com"
+AUTHOR="RoninDusette"
+  
+#Initialization
+POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
+POL_SetupWindow_Init
+  
+POL_Debug_Init
+  
+# Presentation
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+  
+# Create Prefix
+POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
+POL_System_SetArch "amd64"
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINEVERSION"
+  
+# Configuration
+Set_OS "win10"
+Set_SoundDriver "alsa"
+  
+# Installation
+POL_SetupWindow_message "$(eval_gettext 'During installation, please UNCHECK all drivers for the Native Instruments controllers or installation will fail.')" "$TITLE"
+POL_Wine_WaitBefore "$TITLE"
+POL_Wine "$APP_ANSWER"
+POL_Wine_WaitExit "$TITLE"
+  
+# Create Shortcuts
+POL_Shortcut "Traktor.exe" "$TITLE" "" "" "Audio;"
+  
+POL_SetupWindow_message "$(eval_gettext 'ATTENTION: You need to DISABLE MULTI-CORE PROCESSOR SUPPORT in the Traktors settings for correct functioning or decks will get stuck.\n\n   After you run the program for the first time, a setup wizard will help you setup controller and sound card settings, after you finished the wizard, you need to click on the Gear Icon to open Traktor Preferences screen and uncheck Enable Multi-Core Processor Support in Audio Setup section.\n\nNOTICE: For low-latency audio, look into WineASIO.\n\nYour MIDI controllers should work as expected.')" "$TITLE"
+  
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2020-01-18)
# Last revision : see changelog
# Distribution used to test : Ubuntu 18.04 (64-bit)
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.12
 
# CHANGELOG
# [Villarleg] (2020-01-18)
#   Wine and windows version updated, Arch 64bit (Support Traktor Pro 3).
# [Dadu042] (2020-01-19)
#   Add POL_Shortcut category.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
PREFIX="TraktorPro3"
WINEVERSION="3.20"
TITLE="Traktor Pro 3"
EDITOR="Native Instruments"
GAME_URL="http://www.native-instruments.com"
AUTHOR="RoninDusette"
  
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
  
POL_Debug_Init
  
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
  
# Create Prefix
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
POL_System_SetArch "amd64"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
  
# Configuration
Set_OS "win10"
Set_SoundDriver "alsa"
  
# Installation
POL_SetupWindow_message "$(eval_gettext 'During installation, please UNCHECK all drivers for the Native Instruments controllers or installation will fail.')" "$TITLE"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
  
# Create Shortcuts
POL_Shortcut "Traktor.exe" "$TITLE" "" "" "Audio;"
  
POL_SetupWindow_message "$(eval_gettext 'ATTENTION: You need to DISABLE MULTI-CORE PROCESSOR SUPPORT in the Traktors settings for correct functioning or decks will get stuck.\n\n   After you run the program for the first time, a setup wizard will help you setup controller and sound card settings, after you finished the wizard, you need to click on the Gear Icon to open Traktor Preferences screen and uncheck Enable Multi-Core Processor Support in Audio Setup section.\n\nNOTICE: For low-latency audio, look into WineASIO.\n\nYour MIDI controllers should work as expected.')" "$TITLE"
  
POL_SetupWindow_Close
exit 0

Réponses

Dimanche 19 Janvier 2020 à 9:40
Note: I think that 'alsa' is not necessary in the script.
Vendredi 29 Mai 2020 à 3:50
This script is giving errors about qt5 dlls. Is there a specific Traktor 3 version I should use? Its not clear.
Anonymous
Vendredi 12 Février 2021 à 20:32
Will this work on Traktor 3.4.1?