Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@futuremeng/vue3-wave-audio-player-list
Advanced tools
npm i @futuremeng/vue3-wave-audio-player-list
<template>
<div style="max-width: 250px">
<Vue3WaveAudioPlayerList
wave-type="mirror"
:data="demo"
:disable-seeking="true"
:wave-animation="false"
:current-time-visible="true"
:duration-time-visible="true"
/>
</div>
</template>
<script>
import Vue3WaveAudioPlayerList from 'vue3-wave-audio-player-list'
export default {
name: 'App',
components: {
Vue3WaveAudioPlayerList,
},
data() {
return {
example_options: {
samples: 50,
type: 'steps',
paths: [
{ d: 'V', sy: 0, x: 0, ey: 100 },
{
d: 'A',
sx: 0,
sy: 100,
ex: 100,
ey: 100,
rx: 10,
ry: 10,
angle: 180,
arc: 1,
sweep: 1,
},
{ d: 'V', sy: 0, x: 100, ey: 100 },
],
},
index: 0,
demo: [
{
title: '国风1',
src: 'https://one-ywcbs-static.oss-cn-beijing.aliyuncs.com/abc.mp3',
},
{
title: '国风2',
src: 'https://one-ywcbs-static.oss-cn-beijing.aliyuncs.com/2.mp3',
},
{
title: '国风3',
src: 'https://one-ywcbs-static.oss-cn-beijing.aliyuncs.com/3.mp3',
},
],
}
},
}
</script>
Name | Required | Type | Description |
---|---|---|---|
data | True | Array | Array of objects with the following structure:{ title:'',src:''} |
wave-width | True | Integer | Width of the Waves. (Not responsive, Also remember that the buttons and the timing strings will take extra ~250px. For example, if(container === 500px) => wave-width = 500 - 250 = 250 ) |
wave-height | True | Integer | Height of the waves (Not Responsive) |
wave-type | False | String | Type of wave. (Not working yet) |
wave-options | False | Object | Set settings for the waves (Not working yet) |
load-audio-onmount | False | Boolean | Load the path and audio data on mounted |
disable-seeking | False | Boolean | Disable time seeking |
current-time-visible | False | Boolean | Show current time |
duration-time-visible | False | Boolean | Show duration time |
disable-seeking | False | Boolean | Disable seeking |
load-audio-onmount | False | Boolean | Load the path and audio data on mounted |
circle | False | Boolean | Show circle button |
I have added all the events that html has in the audio tag with a "on-" prefix. Additional events:
Name | Required | Type | Return | Description |
---|---|---|---|---|
on-play | False | Func | Boolean | Triggered when user click on play button |
Check MDN Doc for all the events.
please send a mail at futuremeng@gmail.com. You can also open any issue in the GitHub page. Thanks for using this package.
vue3-wave-audio-player wave-path-audio-player package waveform-path package
FAQs
Vue 3 Component for wave audio player list
The npm package @futuremeng/vue3-wave-audio-player-list receives a total of 2 weekly downloads. As such, @futuremeng/vue3-wave-audio-player-list popularity was classified as not popular.
We found that @futuremeng/vue3-wave-audio-player-list demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.