# PlayerMicrophoneEvent
> Fired when a player's microphone transmits audio data.
`gg.lode.amplifierapi.api.event.PlayerMicrophoneEvent`
---
## Signature
```java
public class PlayerMicrophoneEvent extends BaseEvent
```
## Extends
- `BaseEvent`
**Cancellable:** No
**Async:** Yes — this event fires asynchronously.
---
## Methods
### player
```java
Player player()
```
Returns the player whose microphone is active.
**Returns:** `Player` — The transmitting player.
---
### connection
```java
VoicechatConnection connection()
```
Returns the player's voice chat connection.
**Returns:** `VoicechatConnection` — The voice chat connection.
---
### event
```java
MicrophonePacketEvent event()
```
Returns the underlying Simple Voice Chat microphone packet event.
**Returns:** `MicrophonePacketEvent` — The original event.
---
## Related Pages
- [[IVoicePlayer]] — Voice player data for the transmitting player