
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@aegis_dev/custom-audio
Advanced tools
使用 ```shell yarn add custom-audio npm install custom-audio ``` ```javascript import CustomAudio from 'custom-audio'; import 'custom-audio/lib/custom-audio.css' Vue.use(CustomAudio); ``` ```vue <template> <CustomAudio :co
使用
yarn add custom-audio
npm install custom-audio
import CustomAudio from 'custom-audio';
import 'custom-audio/lib/custom-audio.css'
Vue.use(CustomAudio);
<template>
<div id="app">
<CustomAudio :config="customParams"
@audioCanplay="audioCanplay"
@audioTimeUpdate="audioTimeUpdate"/>
</div>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
@Component
export default class App extends Vue {
private customParams = {
url: "https://dshvv.oss-cn-beijing.aliyuncs.com/speak.wav",
keyframes: [
{
duration: 9140,
label: "ivr",
color: "white",
},
{
duration: 15940,
label: "振铃",
color: "red",
},
{
duration: 8840,
color: "green",
label: "人工服务",
},
{
duration: 6280,
color: "blue",
label: "满意度",
},
],
};
private audioCanplay(e: any){
console.log('音频已准备好,可以播放了',e);
}
private audioTimeUpdate(e: any){
console.log('音频当前播放进度更新',e);
}
}
</script>
参数
interface keyframe{
// 此段的时长 毫秒
duration: number;
// 关键段颜色标识
color: string;
// 关键点名字
label: string;
}
export interface CustomAudioParams{
// 音频地址
url: string;
// 播放图标自定义
playImg?:string;
// 暂停图标自定义
pauseImg?:string;
// 进度圆球的样式
pointImg?:string;
// 是否开启静音工具
mutedTool?: boolean;
// 是否开启重置功能
restartTool?: boolean;
// 是否开启下载功能
downTool?: boolean;
// 关键帧
keyframes?:Array<keyframe>;
// 是否开启label显示,默认true
showLabel?:boolean;
}
audioCanplay、audioTimeUpdate原生节点的回调
预览

FAQs
使用 ```shell yarn add custom-audio npm install custom-audio ``` ```javascript import CustomAudio from 'custom-audio'; import 'custom-audio/lib/custom-audio.css' Vue.use(CustomAudio); ``` ```vue <template> <CustomAudio :co
The npm package @aegis_dev/custom-audio receives a total of 0 weekly downloads. As such, @aegis_dev/custom-audio popularity was classified as not popular.
We found that @aegis_dev/custom-audio demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.