A downloadable asset pack

This is a collection of pre-made audio filters for Ren'Py using the built-in audio filter functionality. They are meant to imitate some of the EQ and reverb factory presets in Audacity. 

Just drop the file into your project and you can start using them!

It includes the following 15 presets:

  • Walkie-Talkie
  • Telephone
  • Radio
  • Bass cut
  • Bass boost
  • Treble cut
  • Treble boost
  • Heavy vocal reverb
  • Standard vocal reverb
  • Bathroom reverb
  • Small room reverb
  • Medium room reverb
  • Large room reverb
  • Church hall reverb
  • Cathedral (very large hall) reverb

For a demo of the available filters, please watch the video!

Created and tested in Ren'Py version 8.3.5.25020701+nightly

StatusReleased
CategoryAssets
Rating
Rated 5.0 out of 5 stars
(5 total ratings)
AuthorBerin
Made withRen'Py
TagsRen'Py, sourcecode
Code licenseMIT License

Download

Download
audio_filters.rpy 3.7 kB

Install instructions

  1. Download the "audio_filters.rpy" file and drop it anywhere in the "game" directory of your Ren'Py project
  2. Pick one of the audio filter variables (ending in "_af", e.g. walkie_talkie_af)
  3. Use it as follows (more information on how to use audio filters in the official documentation)

With the voice channel:

label start:
    $ renpy.music.set_audio_filter("voice", walkie_talkie_af)
    voice examplevoiceline 

With other sound channels:

label start:     
    $ renpy.music.set_audio_filter("sound", walkie_talkie_af)
    play sound examplevoiceline

To remove it again, set the audio filter to "None":

$ renpy.music.set_audio_filter("sound", None)

Comments

Log in with itch.io to leave a comment.

this are really fun & useful! thank you for sharing them.

Thank you!