Sound Design

Add complementary sound templates to your text-to-speech to enhance your sonic experience.

One major benefit of AudioStack is that you can easily combine generated speech with sound designs from our sound template library, or with your own audio files.

What is a Sound Design

From Wikipedia:

Sound design is the art and practice of creating soundtracks for a variety of needs. It involves specifying, acquiring or creating auditory elements using audio production techniques and tools. It is employed in a variety of disciplines including filmmaking, television production, video game development, theatre, sound recording and reproduction, live performance, sound art, post-production, radio, new media and musical instrument development. Sound design commonly involves performing (see e.g. foley) and editing of previously composed or recorded audio, such as sound effects and dialogue for the purposes of the medium, but it can also involve creating sounds from scratch through synthesizers. A sound designer is one who practices sound design.

Sound Design

How is Sound Design different from Backing Music?

A backing track is often used to make up a sound design, but a sound design (sometimes called a soundbed) can be more complicated. Sound designs can include a variety of different sound design elements to enhance your audio asset, such as:

  • Ambience -- the background noise that sets a scene. It should be appropriate and informative without overwhelming the recordingโ€™s focus.
  • Foley sounds -- the sounds of actions that make scenes seem more real. Ex: footstep sounds or material moving as someone walks
  • Audio effects -- sounds created because they donโ€™t exist in the real world. Ex: an alien invasion.
    A voice-over is the voice of a narrator who is either a character or an unseen narrator driving a story forward.
    Music includes songs and instrumental pieces that influence mood and help tell the story.

Code Example

Let's take this step by step.

:one: Create text to speech with one of our 600 voices

:two: Select a sound design from our list of sound templates - we've given you some recommendations in the example.

:three: Add that sound template and produce your asset using our AI enhanced mixing and mastering engine

from uuid import uuid4
import audiostack
import os

audiostack.api_key = "APIKEY" ## fill me in!
SCRIPT_TEXT = """
<as:section name="main" soundsegment="main">
Sound designs can enhance your generated speech by adding sound effects, ambience and backing music to bring your audio to life.
</as:section>
"""

names = ["Elaine","Edward"]# "narration_gia", "yolanda", "jeff", "narration_terra", "narration_jeremy", "promo_joe", "Wren",  "jollie", "aspen", "renata", "christopher", "jenny", "Bronson", "Adele", "sara", "kellie", "hailey", "michelle", "geena", "monica"]
presets = ["musicenhanced", "balanced", "voiceenhanced"]
templates = ["friendly_electronica","eighties_chill","funky_summer"]

script = audiostack.Content.Script.create(scriptText=SCRIPT_TEXT, scriptName="test", projectName="ams_tests_2")        

for name in names:
    # Creates text to speech
    speech = audiostack.Speech.TTS.create(
            scriptItem=script,
            voice=name,
    )
    for template in templates:

        for preset in presets:

            mix = audiostack.Production.Mix.create(
                speechItem=speech,
                soundTemplate=template,
                masteringPreset=preset,
            )
            print(mix)
            uuid = uuid4()

            mix.download(fileName=f"V4_{name}_{template}_{preset}")

            print(mix)

Here we cycle through a few different voice options, mastering presets and templates. You can find out more about mixing and mastering here.


Whatโ€™s Next

Find out more about our sound templates or upload your own sound design to work with: