I would like to display the play button when the stream is on pause state.
So far I tried adding the jw-state-idle, but this removes the static image when paused.
You can use some CSS to do this.
<style>
.jwplayer.jw-state-paused .jw-display-icon-container {
display: table;
}
.jwplayer.jw-state-paused .jw-icon-display::before {
content: "\e60e";
}
</style>