All Projects → transitive-bullshit → React Mp3 Recorder

transitive-bullshit / React Mp3 Recorder

Microphone recorder for React that captures mp3 audio 🎵

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Mp3 Recorder

Javascript Media Recorder
WebRTC video recorder library for Javascript
Stars: ✭ 61 (+3.39%)
Mutual labels:  recorder, audio, mp3
Recorder
html5 js 浏览器 web端录音
Stars: ✭ 429 (+627.12%)
Mutual labels:  recorder, audio, mp3
Recorder
html5 js 录音 mp3 wav ogg webm amr 格式,支持pc和Android、ios部分浏览器、和Hybrid App(提供Android IOS App源码),微信也是支持的,提供H5版语音通话聊天示例 和DTMF编解码
Stars: ✭ 2,891 (+4800%)
Mutual labels:  recorder, audio, mp3
Recorder.js
🎤HTML5 Recorder - mp3 output
Stars: ✭ 229 (+288.14%)
Mutual labels:  recorder, audio, mp3
Freac
The fre:ac audio converter project
Stars: ✭ 518 (+777.97%)
Mutual labels:  audio, mp3
Mediatoolkit
A .NET library to convert and process all your video & audio files.
Stars: ✭ 492 (+733.9%)
Mutual labels:  audio, mp3
Hysteriaplayer
Objective-C audio player, sitting on top of AVPlayer
Stars: ✭ 568 (+862.71%)
Mutual labels:  audio, mp3
Trinity
android video record editor muxer sdk
Stars: ✭ 609 (+932.2%)
Mutual labels:  recorder, audio
Green Recorder
A simple screen recorder for Linux desktop. Supports Wayland & Xorg
Stars: ✭ 594 (+906.78%)
Mutual labels:  recorder, audio
Ffmediaelement
FFME: The Advanced WPF MediaElement (based on FFmpeg)
Stars: ✭ 733 (+1142.37%)
Mutual labels:  audio, mp3
Spy Spotify
🎤 Records Spotify to mp3 without ads and adds media tags to the files 🎵
Stars: ✭ 929 (+1474.58%)
Mutual labels:  recorder, mp3
Flutter Assetsaudioplayer
Play simultaneously music/audio from assets/network/file directly from Flutter, compatible with android / ios / web / macos, displays notifications
Stars: ✭ 458 (+676.27%)
Mutual labels:  audio, mp3
Music Metadata
Stream and file based music metadata parser for node. Supporting a wide range of audio and tag formats.
Stars: ✭ 455 (+671.19%)
Mutual labels:  audio, mp3
Axiom
An FFmpeg GUI for Windows
Stars: ✭ 560 (+849.15%)
Mutual labels:  audio, mp3
Blank Audio
Set of blank MP3 audio files
Stars: ✭ 452 (+666.1%)
Mutual labels:  audio, mp3
Screenity
The most powerful screen recorder & annotation tool for Chrome 🎥
Stars: ✭ 6,229 (+10457.63%)
Mutual labels:  recorder, audio
Minimp3
Minimalistic MP3 decoder single header library
Stars: ✭ 898 (+1422.03%)
Mutual labels:  audio, mp3
Openaudible
Open Source Audible Manager
Stars: ✭ 932 (+1479.66%)
Mutual labels:  audio, mp3
Aplay
A Better(Maybe) iOS Audio Stream、Cache、Play Framework
Stars: ✭ 44 (-25.42%)
Mutual labels:  audio, mp3
Libnyquist
🎤 Cross platform C++11 library for decoding audio (mp3, wav, ogg, opus, flac, etc)
Stars: ✭ 311 (+427.12%)
Mutual labels:  audio, mp3

react-mp3-recorder (demo)

Simple microphone recorder for React that captures mp3 audio.

NPM JavaScript Style Guide

Demo

Intro

This module exports a simple recording button for React which uses the wasm-optimized vmsg library under the hood to record and encode an MP3 directly from the microphone.

Capturing MP3 audio is much more efficient and practical than using the MediaStream recording API directly.

Install

npm install --save react-mp3-recorder
# or
yarn add react-mp3-recorder

Usage

import React, { Component } from 'react'

import Recorder from 'react-mp3-recorder'

export default class App extends Component {
  render () {
    return (
      <Recorder
        onRecordingComplete={this._onRecordingComplete}
        onRecordingError={this._onRecordingError}
      />
    )
  }

  _onRecordingComplete = (blob) => {
    console.log('recording', blob)
  }

  _onRecordingError = (err) => {
    console.log('recording error', err)
  }
}

License

This module was bootstrapped with create-react-library.

Support my OSS work by following me on twitter twitter

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].