Skip to main content

An audiobook sound effect generator that transforms SRT files into immersive audio experiences. It parses SRT files, uses ChatGPT to create sound effect prompts, generates sounds via the ElevenLabs API, and syncs the audio on an MP3 timeline.

Project description

SRT2SoundFX

PyPI package version number License

This project is a sound effect generator for audiobooks, videos, and recordings based on SRT files. It parses SRT files, sends the elements to ChatGPT for sound effect prompts, merges the prompts with the SRT elements, generates sounds using the ElevenLabs API, and places the audio on an MP3 timeline.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

  • Python 3.7+
  • OpenAI API key (get it here)
  • ElevenLabs API key (get it here)
  • ffmpeg (optional, for adding sounds to the audio file)

Installing

Install the package using pip:

pip install srt2soundfx

Using the Package in Your Code

Here is an example of how to use the Srt2SoundFX class in your code:

from srt2soundfx.core import Srt2SoundFX

# Initialize the Srt2SoundFX class with your API keys
# Choose between Azure OpenAI and OpenAI by providing the respective API keys
srt2soundfx = Srt2SoundFX(
    elevenlabs_api_key='ELEVENLABS_API_KEY',
    openai_api_key='OPENAI_API_KEY', # Use this if you are using OpenAI
    azure_openai_api_key='AZURE_OPENAI_API_KEY', # Use this if you are using Azure OpenAI
    azure_openai_endpoint='AZURE_OPENAI_ENDPOINT' # Use this if you are using Azure OpenAI
)
# Define paths
srt_path = "/path/to/your/audio.srt"
save_dir = "/path/to/save/directory"
project_name = "your_project_name"
audio_path = "/path/to/your/audio.mp3"

# Process the audio
result = srt2soundfx.generate_sounds(srt_path, save_dir, project_name, audio_path)

# If you only want the sounds without placing them in the audio
sounds = srt2soundfx.generate_sounds(srt_path, save_dir, project_name)

Supported Languages

The Srt2SoundFX project supports all languages that are supported by ChatGPT (e.g., English, Spanish, French, German, Polish, Italian, Portuguese, Chinese, Japanese, Korean, Russian, Hindi, and Arabic). This means you can process SRT files in any of these languages, and the sound effect prompts will be generated accordingly. Ensure that your SRT file is properly formatted and encoded in the language you intend to use.

Example Usage

Here is a complete example:

from srt2soundfx.core import Srt2SoundFX

# Initialize the Srt2SoundFX class
srt2soundfx = Srt2SoundFX(
    elevenlabs_api_key='ELEVENLABS_API_KEY',
    openai_api_key='OPENAI_API_KEY'
)

# Define paths
srt_path = "resources/audiobook.srt"
save_dir = "resources"
project_name = "audiobook"
audiobook_path = "resources/audiobook.mp3"

# Process the audio
result = srt2soundfx.generate_sounds(srt_path, save_dir, project_name, audiobook_path)

# If you only want the sounds without placing them in the audio
sounds = srt2soundfx.generate_sounds(srt_path, save_dir, project_name)

Example Output

Output of sounds Variable

When processing an SRT file, the result includes a list of sound effects with their details, such as the start and end times, the prompt used to generate the sound, and the path to the generated audio files:

[
    {
        "id": 10,
        "start": 30.3,
        "end": 33.0,
        "text": "The silhouettes of ships loomed on the horizon.",
        "prompt": "A high-quality sound of distant ships at sea, creating an atmosphere of adventure.",
        "duration": 12,
        "audio_path": "/resources/audiobook_10.mp3"
    },
    {
        "id": 35,
        "start": 116.5,
        "end": 118.2,
        "text": "We'll board them immediately.",
        "prompt": "A high-quality sound of swords clashing, symbolizing a naval battle or abordage.",
        "duration": 5,
        "audio_path": "/resources/audiobook_35.mp3"
    }
]

Output of result Variable

If you process an audio file along with the SRT file, the result variable contains paths to the final audio files:

{
    "effects": "/app/resources/final_audiobook_with_effects.mp3",
    "final_audio": "/app/resources/effects.mp3"
}
  • effects: Path to the audiobook with the sound effects added.
  • final_audio: Path to the standalone audio effects timeline.

Example Results of End Product

Due to limitations of the ElevenLabs API, sound effects longer than 22 seconds were added manually, and some sound effects were deleted. Below are examples of audiobooks where this tool was used:

Audiobook in German

Audiobook in Polish

Developing

First, clone the repository:

git clone https://github.com/stefaner1/SRT2SoundFX.git

Then, navigate to the project folder:

$ cd SRT2SoundFX

Set Up Environment Variables

Copy the .env_example file and rename it to .env:

cp .env_example .env

Open the .env file and set your API keys. Save the file. These variables will be automatically loaded during development.

Next, run docker:

$ docker-compose up

Running the Tests

Navigate to the tests directory:

$ cd tests

Then, run the tests:

$ python -m unittest discover

Built With

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

srt2soundfx-1.0.1.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

srt2soundfx-1.0.1-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file srt2soundfx-1.0.1.tar.gz.

File metadata

  • Download URL: srt2soundfx-1.0.1.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for srt2soundfx-1.0.1.tar.gz
Algorithm Hash digest
SHA256 ddf16a73f5a966899a7ef1c4eebd5720e0fe80dbcb128175fcb36ddd900eef83
MD5 c813a63a2ba6d91ac29a681738073060
BLAKE2b-256 8f3c59c2e82e079ea3855a4adcc9d7ec547ca6afc92217b7c5182b5fcff8dcf5

See more details on using hashes here.

File details

Details for the file srt2soundfx-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: srt2soundfx-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 12.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for srt2soundfx-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7779eb28ed2d0497301a87bda819db57b3ad74b58a7cd399b85bd53bf13eab50
MD5 bf1e5858f661792e8d71a147cad04c0a
BLAKE2b-256 c4b479dae2d171283a1b6db56aa98fe3704544292c146eea99b6684667ba93b6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page