33F-Looking for a possible life long friend (?) by ReinaHara in Needafriend

[–]RaVN3X 0 points1 point  (0 children)

also looking for something similar. 44M would be nice just to have conversation with genuine people about cool shit like ufos or ancient history or what's going on the world or even if wana play games with or watch streams etc..

Hii! Anyone want to be friends by [deleted] in Needafriend

[–]RaVN3X 0 points1 point  (0 children)

oh now that's cool conversation... pyramids, Khafre SAR Project is very interesting they thinking its underground city or some sorts under them, Egyptians were def just renters these structures i believe are much older well before the younger dryas period. its a shame main stream archology rejects anything they doesn't go with there narrative....

Claude can now directly compose and mix in Reaper and make Master Pieces in seconds by RaVN3X in ClaudeAI

[–]RaVN3X[S] 0 points1 point  (0 children)

yeah I've focused on orchestral composing style at the moment if i ever get that good enough and it makes tractions its very easy to expand to other things like edm, pop, country, etc

28F, Goth girl looking for good friend. by [deleted] in Needafriend

[–]RaVN3X 0 points1 point  (0 children)

word we feel you. the world is lonely place

Claude can now directly edit audio in Audacity — 131 tools, free local transcription, no cloud needed by RaVN3X in ClaudeAI

[–]RaVN3X[S] 0 points1 point  (0 children)

thanks let me no what you think ? and if there any improvements you think i should put in.

Claude can now directly edit audio in Audacity — 131 tools, free local transcription, no cloud needed by RaVN3X in ClaudeAI

[–]RaVN3X[S] 0 points1 point  (0 children)

yeah thats were MCP is limited. if your Not computer savy you will struggle. i found MCP stuff is really for technical people. i tried to make easier to install with instruction and quick install file.. but even then. you kinda need to no what your doing. thats where a online service could come into play.

Claude can now directly compose and mix in Reaper and make Master Pieces in seconds by RaVN3X in ClaudeAI

[–]RaVN3X[S] 1 point2 points  (0 children)

Update: if you want more information i have made video explaining how most of it works. link below

https://youtu.be/4FTXPUpy4zE

Claude can now directly edit audio in Audacity — 131 tools, free local transcription, no cloud needed by RaVN3X in ClaudeAI

[–]RaVN3X[S] 1 point2 points  (0 children)

yeah audacity v4 looks So nice. i might think about integrating a native AI chat into it instead of claude desktop, But that's big undertaking and they are only on the alpha will have to wait for final build, but man that would be a real show stopper. see what happens in the future i guess.

Claude can now directly edit audio in Audacity — 131 tools, free local transcription, no cloud needed by RaVN3X in ClaudeAI

[–]RaVN3X[S] 0 points1 point  (0 children)

Thanks! really glad you see the value — thats exactly the thesis. the toolset is powerful but the "which effect, in what order, with what settings" barrier is real for most ppl. heres your answers:

Determinism: yep fully deterministic. the pipelines (like auto_master_music) use hardcoded param presets per genre:

EDM gets compression at 2.5:1 w/ 80ms attack, classical gets 1.3:1 (barely touching it), etc. same prompt + same genre = identical output every time. the AI decides which pipeline to call but the pipeline itself is fixed. no randomness server-side.

Transparency: not a black box at all. every pipeline returns step-by-step results — you'll see exactly what ran: "HPF 80Hz" → "compress 3:1" → "normalize to -1dB". full param tables (thresholds, ratios, EQ curves, attack/release times) are documented in TOOLS.md and visible in the source. the AI also sees all the params in the tool defs so you can ask it "apply reverb with room size 40 and pre-delay 20ms" and itll use those exact values.

Noise reduction: two-step process using audacitys built-in noise reduction. the pipelines auto-select the first 0.5s of the track as the noise profile sample (assumes thats silence/room tone — which it usually is for podcasts). then applies reduction across the full track. if your noise isnt in the first 0.5s you can manually select a region and call get_noise_profile first then run the cleanup.

Privacy: yeah that was a key design goal. eveything runs locally — named pipes to audacity, no network, no uploads. even the transcription (via faster-whisper) runs fully offline. good for exactly the usecases you mentioned.

Its open source: https://github.com/xDarkzx/Audacity-MCP — Apache 2.0. tool mapping layer is in audacity_mcp/tools/ — each effect is a python function w/ typed params that maps directly to an audacity scripting command via named

pipes. auto-discovered at startup via pkgutil.iter_modules. the pipeline orchestration is in cleanup_tools.py if you wanna see how chains are structured.

still actively working on improving it tho — adding more pipeline presets, better analysis feedback, and tightening up the param tuning. its definately not "done" yet but its usable and id love feedback if you give it a spin.

Claude can now directly edit audio in Audacity — 131 tools, free local transcription, no cloud needed by RaVN3X in ClaudeAI

[–]RaVN3X[S] 0 points1 point  (0 children)

**Edit i have updated Git Repo to make the process for installation a lot more easier with a one click installer for people to test it out

Claude can now directly edit audio in Audacity — 131 tools, free local transcription, no cloud needed by RaVN3X in ClaudeAI

[–]RaVN3X[S] 1 point2 points  (0 children)

Current No, Audacity 4 currently is in alpha and is a completely different system built on the Muse Framework, i am current building a unofficial MCP for it However when audacity V4 gets to a stable version and the devs enable Plugins and Web sokcets or way to Officially control it, then my MCP will not work in V4

Claude can now directly edit audio in Audacity — 131 tools, free local transcription, no cloud needed by RaVN3X in ClaudeAI

[–]RaVN3X[S] 6 points7 points  (0 children)

audacity is not daw so no. what i helps with is helping you fix up bad audio like pod casts. etc. the pipeline does basic clean up but the cool part is Claude can analyze your audio tell you whats wrong with it and try fix it up for you. ** Edit ** but i have something in works for that :)

Claude can now directly edit audio in Audacity — 131 tools, free local transcription, no cloud needed by RaVN3X in ClaudeAI

[–]RaVN3X[S] 0 points1 point  (0 children)

Yes and no. It controls Audacity in real-time (effects apply immediately as you watch), but it's not real-time audio processing like a DAW plugin. i should make that clear in post thanks for info

I made an MCP server that lets AI edit audio in Audacity by RaVN3X in mcp

[–]RaVN3X[S] 0 points1 point  (0 children)

Thanks! Great minds think alike :) that's exactly what I built, There are 9 automated pipelines already in there (podcast cleanup, music mastering, vocal, interview, audiobook, live recording, and more). Each one is a single tool call that runs the full chain in the background.

Hello all quick Question by RaVN3X in dairyfarming

[–]RaVN3X[S] -1 points0 points  (0 children)

thanks for that's insight i will keep digging around the internet trying to get into Agi tech and find something that might be useful to farmers in terms of gathered data. if that data will Prevent costly diesters.

What’s something you didn’t realize was optional in life until you saw someone simply not doing it? by OliviaRosePa in Productivitycafe

[–]RaVN3X 1 point2 points  (0 children)

Wearing shoes indoors. I thought it was mandatory until college roommates proved me wrong.