Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@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 2 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.