Skip to content

Commit 0fc858e

Browse files
author
Warren S
committed
Documentation
1 parent c606152 commit 0fc858e

18 files changed

+59
-17
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 Warren S.
3+
Copyright (c) 2018 Warren S & Ralph Quinto
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Presentation.pdf

469 KB
Binary file not shown.

README.md

+30-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,30 @@
1-
# PythonAudioEffects
1+
# PythonAudioEffects
2+
3+
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/nextseto/PythonAudioEffects/master/LICENSE)
4+
5+
Many movies have special effects added to the visuals and the audio to set the tone for various scenes. In movies, editors use audio processing to apply effects to voice actors to make them seem more dramatic or to better fit the overall storyline.
6+
7+
**PythonAudioEffects** is a python library that can manipulate audio files (Mono WAV) and apply: darth vader, echo, radio, robotic, and ghost effects onto audio. In addition to applying pre-built custom audio effects, the library also provides DSP operations to build even more effects!!
8+
9+
## Installation
10+
11+
### Requirements
12+
13+
* Python 2.7 or 3.x
14+
* macOS or Linux (Windows not officially supported, but might work)
15+
* numpy: `pip install numpy`
16+
* scipy: `pip install scipy`
17+
18+
**Note:** [macOS users may need to setup using virtualenv.](https://gist.github.com/pandafulmanda/730a9355e088a9970b18275cb9eadef3)
19+
20+
## How to use
21+
22+
1. Clone the repository
23+
2. Look at: `tests/effects.py` for processing a WAV file and generating different premade effects
24+
3. Look at `tests/processing.py` to learn how to use the DSP operations for manipulating audio
25+
26+
27+
## License
28+
29+
All **source code** in this repository is released under the MIT license. See LICENSE for details.
30+
File renamed without changes.
112 KB
Binary file not shown.
160 KB
Binary file not shown.
112 KB
Binary file not shown.
112 KB
Binary file not shown.
140 KB
Binary file not shown.
File renamed without changes.
89.1 KB
Binary file not shown.
127 KB
Binary file not shown.
89.1 KB
Binary file not shown.
89.1 KB
Binary file not shown.
111 KB
Binary file not shown.

test_processing.py

-14
This file was deleted.

test_effects.py tests/effects.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1+
'''
2+
Usage : python effects.py
3+
4+
Input : An input WAV file for processing
5+
Output : Five processed WAV audio samples
6+
7+
Note : Please change the code below to fit your needs.
8+
'''
19

210
from AudioLib import AudioEffect
311

4-
input_file_path = 'input2.wav'
12+
input_file_path = 'input.wav'
513
output_filename = 'output'
614

715
AudioEffect.ghost(input_file_path, output_filename + '_ghost.wav')

tests/processing.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
'''
2+
Usage : python processing.py
3+
4+
Input : An input WAV file for processing
5+
Output : A processed WAV audio sample
6+
7+
Note : Please change the code below to fit your needs.
8+
'''
9+
10+
from AudioLib.AudioProcessing import AudioProcessing
11+
12+
sound1 = AudioProcessing('input.wav')
13+
14+
sound1.set_audio_speed(0.5)
15+
sound1.set_audio_pitch(2)
16+
sound1.set_reverse()
17+
sound1.set_echo(1)
18+
19+
sound1.save_to_file('output.wav')

0 commit comments

Comments
 (0)