-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
37 lines (25 loc) · 1.21 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
sfx
===
Super simple sound effects manager for Windows. After having been annoyed by expensive, commercial, bloated and slow sound effect managers, I decided to write my own super simple version. In theory it should read its WAV files from a local harddisk for efficiency and execution speed. It requires no installation, just copy all the files to a directory. Two text files dictate which sounds are found where:
config.txt
==========
This text file has one line and it tells where all the sound effects are stored. So this is the longest possible path to sound files that all files have in common. Usually something like:
D:\SFX\
data.txt
========
This text file lists all the WAV files and their descriptions. The first line is ignored, so it can be used for a small description of its purpose. A typical data file might look like this:
Data for sfx (this line is ignored).
Sound of a frog
animals\frog.wav
Sound of a tiger
animals\tiger.wav
High speed train passing by
transport\fast train.wav
Combined with the above CONFIG.TXT, this will only work if the following files exist on the system:
D:\SFX\animals\frog.wav
D:\SFX\animals\tiger.wav
D:\SFX\transport\fast train.wav
info
====
Hens Zimmerman