waveform-util

所属分类:Node.js
开发工具:CoffeeScript
文件大小:978KB
下载次数:0
上传日期:2013-04-22 11:53:20
上 传 者sh-1993
说明:  用于在浏览器中处理波形的实用程序的微小节点模块。取决于pcm.js和ffprobe.js。
(Tiny node module of utilities for working with waveforms in the browser. Depends on pcm.js and ffprobe.js.)

文件列表:
.npmignore (35, 2013-04-22)
Cakefile (209, 2013-04-22)
lib (0, 2013-04-22)
lib\waveform.js (4665, 2013-04-22)
node_modules (0, 2013-04-22)
node_modules\.bin (0, 2013-04-22)
node_modules\.bin\_mocha (19, 2013-04-22)
node_modules\.bin\cake (25, 2013-04-22)
node_modules\.bin\coffee (27, 2013-04-22)
node_modules\.bin\mocha (18, 2013-04-22)
node_modules\chai (0, 2013-04-22)
node_modules\chai\.npmignore (130, 2013-04-22)
node_modules\chai\History.md (24834, 2013-04-22)
node_modules\chai\ReleaseNotes.md (3560, 2013-04-22)
node_modules\chai\chai.js (115469, 2013-04-22)
node_modules\chai\index.js (40, 2013-04-22)
node_modules\chai\lib (0, 2013-04-22)
node_modules\chai\lib\chai.js (1119, 2013-04-22)
node_modules\chai\lib\chai (0, 2013-04-22)
node_modules\chai\lib\chai\assertion.js (3137, 2013-04-22)
node_modules\chai\lib\chai\core (0, 2013-04-22)
node_modules\chai\lib\chai\core\assertions.js (32477, 2013-04-22)
node_modules\chai\lib\chai\error.js (1174, 2013-04-22)
node_modules\chai\lib\chai\interface (0, 2013-04-22)
node_modules\chai\lib\chai\interface\assert.js (24394, 2013-04-22)
node_modules\chai\lib\chai\interface\expect.js (233, 2013-04-22)
node_modules\chai\lib\chai\interface\should.js (2109, 2013-04-22)
node_modules\chai\lib\chai\utils (0, 2013-04-22)
node_modules\chai\lib\chai\utils\addChainableMethod.js (2725, 2013-04-22)
node_modules\chai\lib\chai\utils\addMethod.js (970, 2013-04-22)
node_modules\chai\lib\chai\utils\addProperty.js (1041, 2013-04-22)
node_modules\chai\lib\chai\utils\eql.js (3611, 2013-04-22)
node_modules\chai\lib\chai\utils\flag.js (788, 2013-04-22)
node_modules\chai\lib\chai\utils\getActual.js (452, 2013-04-22)
node_modules\chai\lib\chai\utils\getEnumerableProperties.js (527, 2013-04-22)
node_modules\chai\lib\chai\utils\getMessage.js (1253, 2013-04-22)
... ...

# Waveform Utils This is a tiny wrapper around ffprobe and pcm.js to do some handy things with waveforms, particularly if you plan on rendering them in-browser (and can't depend on the WebAudio API being present). I built this because I needed a way to generate representative peak arrays of arbitrary widths for audio files, to be later rendered into a client-side `` element. ## Installing Grab it via npm: `npm install waveform-util` Note that since pcm.js depends on ffmpeg and ffprobe.js on ffprobe, you'll need to have these installed on your system. If you're on OS X, like I am: `brew install ffprobe ffmpeg` ## Examples Currently there are methods for generating peak arrays of various sizes (no JSON stream support yet, send ye your pull requests), and for parsing useful audio data out of audio files. ``` waveform = require('waveform-util') // Generate peaks from a given audio file path. All parameters are required: // waveform.generate_peaks(audio_path, target_width, duration, bit_rate, channels, callback); // Parameters: // - audio_path: relative or absolute path to an audio file of *nearly* any type* // - target_width: how many entries you want in the output peaks array. // This is useful, for example, if you want to draw a // 200px-wide waveform: each peak becomes a line 1px wide. // - duration: Duration of the audio in (fractional) seconds // - bit_rate: Bit rate of the audio file // - channels: Number of channels in the audio (e.g. 1 for mono, 2 for stereo) // - callback: callback function with `err` and `peaks_obj` as parameters // // The peaks_obj parameter in the callback will be an object with the format // { peaks: [], max_peak: Number } waveform.generate_peaks('test.m4a', 200, 31.05, 44100, 2, function (err, peaks_obj) { console.log(peaks_obj.peaks) // Array of peak values e.g. [0.75, 0.2, 0.1111,...] console.log(peaks_obj.max_peak) // Max peak in the signal: useful for scaling the peak values when drawing them } ) ```

近期下载者

相关文件


收藏者