Search.../

unmute( )

Unmutes video volume.

Authorization

Request

This endpoint does not take any parameters

Response Object

Fulfilled - When the volume has been unmuted.

Returns an empty object.

Status/Error Codes

Was this helpful?

Unmute volume

Copy Code
1$w("#myVideoPlayer").unmute();
Unmute volume and log a message when done

Copy Code
1$w("#myVideoPlayer").unmute()
2 .then( () => {
3 console.log("Done with unmute");
4 } );