Socket
Socket
Sign inDemoInstall

cc-audiobuffer

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cc-audiobuffer

cc-audiobuffer helps you splice audio fragments


Version published
Weekly downloads
7
increased by600%
Maintainers
1
Weekly downloads
 
Created
Source

cc-audiobuffer

版本2.1.2 Version 2.1.2

简介 Introduction

cc-audiobuffer是一个使切片的连续语音重新组合在一起的工具。

cc-audiobuffer helps you splice continuous audio fragments.

让语音排队起来 Let's queue those audios !

安装 Install

npm:

npm install cc-audiobuffer
import CCAudioBuffer from 'cc-audiobuffer'

using Webpack

script:

<script src="dist/cc-audiobuffer.js"></script>

source code: dist

使用 Use

  • 创建

无参数创建 Create without argument

let CCAudioBuffer = new CCAudioBuffer()

CCAudioBuffer.pushBuffer('url')

当有新的url语音地址传过来的时候,CCAudioBuffer会提前加载并且自动播放语音。不管何时调用pushBuffer('url'),这些语音都会依次进入缓冲区且连续播放直到缓冲区为空。

When there has new url of audio,CCAudioBuffer will preload and autoplay this aduio.Whenever you call pushBuffer('url'), those audio will enter the buffer one by one and autoplay till buffer is empty.


有参数创建 Create with arguments

let CCAudioBuffer= new CCAudioBuffer([new Audio('url'),new Audio('url'),new Audio('url')])

CCAudioBuffer.pushBuffer('url')

当你有参数创建时,参数规定是Audio对象的一个数组。

When you create CCAudioBuffer with arguments, argements must be an array of audio.

创建CCAudioBuffer时候内部语音自动播放

Auto play when CCAudioBuffer is created

pushBuffer() 的作用和无参数创建一样。

pushBuffer() method is the same above.

  • 操作

当前语音指正在播放中的一小片语音片,它已经从CCAudioBuffer队列中移出

Current audio is the playing audio, it has be shifted from CCAudioBuffer

暂停当前语音片播放 Pause current audio

CCAudioBuffer.pauseBuffer()

继续当前语音片播放 Continue current audio

CCAudioBuffer.continueBuffer()

清空之后的语音队列 Clear CCAudioBuffer

CCAudioBuffer.clearBuffer()

当前已经正在播放的语音不能被清除 Current audio couldn't be cleared

  • 下一版本?Next Version?

接下来的计划:单例模式、报错处理、暂停播放继续播放清空队列优化

Next Version: Singleton、Error handling、Optimized continue & pause & clear code

Keywords

FAQs

Package last updated on 01 May 2017

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc