Apple QuickTime Player is a fairly simple media player which largely uses the MOV format.
Nothing was required outside of Wine or POL for QuickTime to run.
Internet Explorer 8 is neccessary. Without it, play/pause, minimize, maximize, close, and other buttons are invisible.
Screenshot:
Script:
#!/bin/bash
#
# Date: 2015-5-27 9:05 PM
# Wine version used: 1.7.43-staging
# Distributions used to test: Linux Mint 17.1 (x64) & Debian GNU/Linux 8.0 (x64)
# Author: MTres19
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="QuickTime"
TITLE="QuickTime Player"
WINEVERSION="1.7.43-staging"
POL_System_TmpCreate "QuickTime"
cd "$POL_System_TmpDir"
POL_GetSetupImages "https://959ad3af07bee0a51d8a94f55631e2a28a6bbbdb.googledrive.com/host/0B_iE50uqUIIbM3A1VFQ5SlhzV1E" "https://1ad729e00e6db2277920eaba5998a84ebe38c026.googledrive.com/host/0B_iE50uqUIIbOVVYUndDN3k4T2s"
POL_SetupWindow_Init
POL_Debug_Init
POL_System_SetArch "x86"
POL_SetupWindow_presentation "QuickTime Player" "Apple, Inc." "apple.com" "MTres19" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_Call POL_Install_LunaTheme
POL_Call POL_Install_ie8
Set_OS "winxp" "sp2"
POL_Download "https://secure-appldnld.apple.com/QuickTime/031-08466.20141022.Xwlnm/QuickTimeInstaller.exe"
POL_Wine "QuickTimeInstaller.exe"
POL_Shortcut "QuickTimePlayer.exe" "QuickTime Player"
POL_SetupWindow_Close
exit 0