You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

vuetify3-audio-player

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vuetify3-audio-player

Audio player for Vue 3 based on Vuetify.

1.5.1
latest
Source
npmnpm
Version published
Weekly downloads
41
-45.33%
Maintainers
1
Weekly downloads
 
Created
Source

vuetify3-audio-player

Downloads Version License

A beautiful, modern, and fully customizable audio player for Vue 3 & Vuetify 3.

🚀 Live Playground

Try all features live in the /playground folder or online demo. All props, color options, and variants are interactive.

Features

  • 🎵 Vue 3 + Vuetify 3: Seamless integration with the latest Vue ecosystem.
  • 🎨 Modern, Responsive UI: Looks great on all devices, supports dark mode.
  • Live Playground: Try all props and see live code updates in the playground.
  • 🧩 All Props Documented: Every prop, event, and icon is documented and demoed.
  • 🖌️ Customizable Colors & Icons: Choose from Vuetify theme colors and set your own icons.
  • 🏷️ Minimal & Flat Modes: Compact/minimal UI and flat card support.
  • 🔁 Loop, Download, Playback Speed: All the controls you expect.
  • Accessibility: Keyboard navigation, aria-labels, and focus states.
  • 🚀 Performance Optimized: Fast, efficient, and production-ready.
  • 📦 NPM & GitHub: npm | GitHub

Installation

npm install vuetify3-audio-player --save

Usage

import VuetifyAudio from "vuetify3-audio-player";
export default {
  components: { VuetifyAudio },
  data: () => ({
    file: "http://www.hochmuth.com/mp3/Boccherini_Concerto_478-1.mp3",
  }),
};
<vuetify-audio
  :file="file"
  color="primary"
  :downloadable="true"
  :minimal="false"
  :autoPlay="false"
  :flat="false"
  :playbackSpeed="false"
  :loopable="false"
  :ended="onEnded"
  :canPlay="onCanPlay"
  playIcon="mdi-play"
  pauseIcon="mdi-pause"
  stopIcon="mdi-stop"
  refreshIcon="mdi-refresh"
  downloadIcon="mdi-download"
  volumeHighIcon="mdi-volume-high"
  volumeMuteIcon="mdi-volume-mute"
  variant="default"
/>

Props

PropTypeDefaultDescription
fileStringnullAudio file URL (required)
colorStringnullVuetify color for controls
downloadableBooleanfalseShow download button
minimalBooleanfalseMinimal UI mode
autoPlayBooleanfalseAutoplay on load
flatBooleanfalseFlat card style
playbackSpeedBooleanfalseShow playback speed button (user can change speed)
loopableBooleanfalseShow repeat button and allow looping (user can toggle repeat)
endedFunction() => {}Callback when audio ends (event handler)
canPlayFunction() => {}Callback when audio can play (event handler)
playIconString"mdi-play"Icon for play button (Material Design Icon name)
pauseIconString"mdi-pause"Icon for pause button (Material Design Icon name)
stopIconString"mdi-stop"Icon for stop button (Material Design Icon name)
refreshIconString"mdi-refresh"Icon for refresh/reload button (Material Design Icon name)
downloadIconString"mdi-download"Icon for download button (Material Design Icon name)
volumeHighIconString"mdi-volume-high"Icon for volume high (Material Design Icon name)
volumeMuteIconString"mdi-volume-mute"Icon for volume mute (Material Design Icon name)
variantString"default"Player style variant (default, modern, tonal)

License

MIT

Keywords

audio

FAQs

Package last updated on 15 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts