
BITKRUNCH // AUDIO ARCADE
Master WAV tracks online in under a minute, then build reverb impulse responses, bass one-shots, drum samples and more with BitKrunch's browser-based audio DSP toolkit. No install
@mstrdbybitkr · X
The full gallery
Tech stack
19 projects

Master WAV tracks online in under a minute, then build reverb impulse responses, bass one-shots, drum samples and more with BitKrunch's browser-based audio DSP toolkit. No install
@mstrdbybitkr · X

Separate any song into professional stems like vocals, drums, bass, and guitar.
AI Stem Splitter — AI 音轨分离器

Add persistent memory and knowledge to AI agents with drop-in files, URLs, and native MCP integration.
kitforai · GitHub
kitforai Kit for AI developer hub — official SDK, Claude Code plugin, MCP setup, and llms.txt.

Reusable UI components and supplies for Framer design projects.
@gustavwf · X
Working on a new @framer creation for

A rhythm game where you distinguish fake instructions and follow real ones to the beat using arrow keys.
Blue White Flag — Play Blue Flag White Flag Games Online Free

Browse and create AI-generated designs: LEGO builds, Minecraft blueprints, Perler patterns, Tesla wraps.
@deepnlp_contact · X
We are launching Craftsman Agent Studio & Store today on PH, which turns creative ideas -> Agentic Designs -> Connect to skilled craftsman -> Physical products. you like to checkout our launch?

Play and create music from audio clips, hummed melodies, or voice input.
@HappyMonkeyAI · X
Been building so many cool things recently, like Riffly 🎸Hear something cool? Play it in seconds. 📷Drop in a clip, hum a melody, or use your mic. 📷

Design electronic circuits and PCBs in your browser with KiCad, no installation required.
ViktorEE · HN
KiCad, a PCB EDA suite is now working in a browser, you can try it at the link, there's a demo project or you can bring your own. Firefox is best, Chrome is good, Safari is "working". We’re Emergence Engineering, a dev shop from Hungary, mostly working with rich text editors, CRDTs. PCBJam started as my (Viktor, CTO, ex-electrical engineer) hobby project but as time went on I put more and more energy into it, and a product started shaping up in my head, in the last few months we’ve started to focus on this project a bit more, and this is the first MVP~ish result. This project is a ton of fun, ton of learning, ton of improvements over improvements: - I thought there must be ways to emulate the PCB canvas OpenGL code on the web. And yes, there are a lot of ways, all of them very buggy. Turns out it’s faster to just write WebGL code that works with KiCad’s Graphics Abstraction Layer if you add the right intermediate debugging steps. I (with Claude) implemented the features and compared

Stream New Orleans hip hop and R&B, watch AI-generated visuals, and book MC Shakie.
@mcshakielive · X
Check out what I just built with Lovable! took me 40 minutes

Create and explore music on an AI-built platform.
@oyzhouzhou · X
我用kimi K3一小时做了一个音乐网站

AI-powered platform for managing music careers with analytics, playlist pitching, and press kit tools.
@GrYoT · X
A manager for independent musicians. instead of juggling like 5 tools for analytics, playlist pitching, content scheduling, booking etc, you just talk to it like you would a real manager and it pulls your actual data and does the busywork

Make music with webcam hand gestures—chords, harmony, theremin pitch, no signup needed.
lisheng3698 · V2EX
我把摄像头变成了乐器:从手势识别到 Web Audio,分享 5 个真正踩过的坑 最近做了一个有点不一样的浏览器小项目:用摄像头识别双手动作,再把手的位置和姿势映射成和弦、音高、音量和音色。 不需要安装软件,也不需要麦克风。打开网页、允许摄像头后,就可以隔空演奏。 项目地址:[GestureSynth.me]( https://gesturesynth.me/) 建议使用最新版 Chrome 或 Edge 。摄像头画面只在本地处理,不会上传。 ## 真正难的不是“识别到手” 最开始我以为,只要 MediaPipe 能返回手部关键点,剩下的事情就是把坐标转换成音符。 实际做下来发现:**识别出一只手很容易,让它变成一个“能演奏”的控制器才难。** 摄像头每一帧都会返回一组手部关键点,但这些坐标会轻微抖动,偶尔还会丢失。如果直接把原始坐标连接到音高或者音量,听起来会非常不稳定。 最后形成的处理链路大致是: ```text 摄像头 → 手部关键点识别 → 提取手掌位置、距离和手势 → 平滑、死区和状态保持 → 映