[Enhancement]: Keyboard shorcut #1513

Closed
opened 2026-04-24 23:48:18 +02:00 by adam · 1 comment
Owner

Originally created by @marcaurele on GitHub (Nov 6, 2023).

Describe the feature/enhancement

To easily pause or restart the latest podcast or audiobook, it would be super nice to have keyboard shortcuts available to interact with the audio player (play, pause, back 10s, forward 10s...).

Originally created by @marcaurele on GitHub (Nov 6, 2023). ### Describe the feature/enhancement To easily pause or restart the latest podcast or audiobook, it would be super nice to have keyboard shortcuts available to interact with the audio player (play, pause, back 10s, forward 10s...).
adam added the enhancement label 2026-04-24 23:48:18 +02:00
adam closed this issue 2026-04-24 23:48:18 +02:00
Author
Owner

@advplyr commented on GitHub (Nov 6, 2023):

This is already supported. The browser will need to have focus for these to work. Abs also uses the media session API so it should be controllable with external devices also.

Here are the hotkeys

AudioPlayer: {
    PLAY_PAUSE: 'Space',
    JUMP_FORWARD: 'ArrowRight',
    JUMP_BACKWARD: 'ArrowLeft',
    VOLUME_UP: 'ArrowUp',
    VOLUME_DOWN: 'ArrowDown',
    MUTE_UNMUTE: 'KeyM',
    SHOW_CHAPTERS: 'KeyL',
    INCREASE_PLAYBACK_RATE: 'Shift-ArrowUp',
    DECREASE_PLAYBACK_RATE: 'Shift-ArrowDown',
    CLOSE: 'Escape'
  }
@advplyr commented on GitHub (Nov 6, 2023): This is already supported. The browser will need to have focus for these to work. Abs also uses the media session API so it should be controllable with external devices also. Here are the hotkeys ```js AudioPlayer: { PLAY_PAUSE: 'Space', JUMP_FORWARD: 'ArrowRight', JUMP_BACKWARD: 'ArrowLeft', VOLUME_UP: 'ArrowUp', VOLUME_DOWN: 'ArrowDown', MUTE_UNMUTE: 'KeyM', SHOW_CHAPTERS: 'KeyL', INCREASE_PLAYBACK_RATE: 'Shift-ArrowUp', DECREASE_PLAYBACK_RATE: 'Shift-ArrowDown', CLOSE: 'Escape' } ```
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/audiobookshelf#1513