We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Instead of this:
player.configure({ manifest: { retryParameters: { maxAttempts: 1 }}});
It would be easier to write (and read) this:
player.configure('manifest.retryParameters.maxAttempts', 1);
Perhaps we could allow both styles by detecting the number or types of arguments.