osl-masum / pprmnt

Wasm MP3 encoder

Home Page:https://pprmnt.cc/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pprmnt.cc

License: GPL v3 Netlify Status

A secure MP3 encoder, powered by Web Assembly. Try it out.

pprmnt screenshot

Why do we need this?

First, why do I need this: I'm a beatmaker, I make beats. When I send beats to other people, or upload them to my website, I need to first convert them to MP3. The lossless WAV version that my DAW spits out is way too big to send easily, and also causes performance issues when uploading online.

Secondly, why might other people need this: Musicians are often in a similar situation, needing to send a quick MP3 instead of a huge WAV file. Musicians often seek out easy-to-use online "convert to MP3 online" websites -- websites which require upload to a remote server. They perform the MP3 encoding on the backend, not on the client.

Basically: musicians are exposing their private intellectual property to these seedy websites, just to get an MP3 version of their audio.

I thought some musicians might prefer a tool that converts their audio securely, locally on their machine, without exposing it to a sketchy third-party server.

How does it work?

The underlying tech stack is based on the following:

  • libmp3lame, a classic C library for encoding audio to MP3
  • emscripten is used to compile libmp3lame and C code to Web Assembly.
  • Web Assembly runs native code on the client, allowing us to do memory-heavy stuff in the browser.
  • All the emscripten web assembly action is done in Docker, for better portability and C lang dependency management.
  • Frontend offloads the web assembly operations to web workers for better performance.
  • Frontend built with React, Emotion, and Parcel Bundler

What else can it do?

Not very much.

But -- pprmnt is a progressive web app,so it works offline, and you can install it kind of like a desktop app.

Why is it called "pprmnt"?

It's a cool way to spell "peppermint".

Development

Known issues

  • Would really appreciate code review by someone more familiar with WASM, help me.
  • Queue'ing -- currently, if the user attempts encode a lot of MP3s concurrently, the app will go completely overboard with memory usage. A queue to control the maximum number or size of concurrently encoding "jobs" could help alleviate this.
  • Performance -- current state is not optimized for speed, I just wanted to get this thing working. There are lots of areas for improvement. Currently, the slowest operation is BaseAudioContext.decodeAudioData().

Forthcoming features

  • Support for other audio codecs as encoding target. Currently, decoding should be working with a variety of source formats, not just wav. It's convert to x format that will be a bit more difficult.
  • Tray app
  • Support for id3 tags, which I attempted already, found out it's a complete nightmare
  • Convert to preact + framework agnostic emotion for lighter bundle size. Currently, it's a 120+ kb chad bundle pretending to be a minimalist hipster bundle.

Contributing

If you want to contribute, here's how to get the dev workflow running locally...

Prerequisites

  • yarn v1.0.0 or higher
  • docker
  • GNU make

Commands

  • make install - install docker deps and frontend deps
  • make build-docker - builds the docker image, the environment for emscripten to run in, compiles libmp3lame
  • make build-wasm - compiles the web assembly + javascript wrapper
  • yarn start - run the dev server, open http://localhost:1234/ to see the app running
  • yarn build - build and prerender for prod deployment

If you experience inconveniently long install times, please try running this command before make install:

export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true

About

Wasm MP3 encoder

https://pprmnt.cc/

License:GNU General Public License v3.0


Languages

Language:JavaScript 96.8%Language:C 1.3%Language:HTML 1.1%Language:Shell 0.3%Language:Dockerfile 0.2%Language:Makefile 0.2%