The isPlayButtonEnabled property not found on my bean side
Remove the prefix isin the EL element. Now he is looking for a method isIsPlayButtonEnabled(). This should do:
<h:commandButton rendered="#{bean.playButtonEnabled}" />
with
public boolean isPlayButtonEnabled() {
return playButtonEnabled;
}