Hey there!
I use this code for our Maya playblast pipeline. Gets the job done!
import os
def getQuickTime():
if os.name == 'nt':
installed = os.path.exists(os.environ['ProgramFiles(x86)'] + "\\QuickTime\\QuickTimePlayer.exe")
return installed
else:
return None
Hope it helps!