npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cc-audiobuffer

v2.1.2

Published

cc-audiobuffer helps you splice audio fragments

Downloads

9

Readme

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