Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/boards
diff options
context:
space:
mode:
authorBruno Coudoin <bcoudoin@src.gnome.org>2007-08-30 23:35:13 (GMT)
committer Bruno Coudoin <bcoudoin@src.gnome.org>2007-08-30 23:35:13 (GMT)
commit6104c7534cda370ad53294715fadeb7b1d7424fc (patch)
treeeedc75ae489ecbc822161e98000b708c2a7f22b7 /boards
parentb1f0cb2ebe48546cf96d2367184728af0e1f9bac (diff)
Moved sounds
svn path=/trunk/; revision=2945
Diffstat (limited to 'boards')
-rw-r--r--boards/sounds/HOWTO_ENCODE65
1 files changed, 0 insertions, 65 deletions
diff --git a/boards/sounds/HOWTO_ENCODE b/boards/sounds/HOWTO_ENCODE
deleted file mode 100644
index 89c9e9b..0000000
--- a/boards/sounds/HOWTO_ENCODE
+++ /dev/null
@@ -1,65 +0,0 @@
-
-This document describes howto create a localized version of the sounds.
-
-1) Create your sounds directory
- ----------------------------
-First copy the english sounds as a template in a new directory with you locale name (e.g. my)
-cd boards/sounds
-cp -r en my
-
-Provide here voice translation in boards/sounds/my for each english sounds.
-
-2) Recording / Encoding
- --------------------
-It is best to choose somebody that speaks and articulate well your language.
-
-- Record with rec, grecord, bcast2000, gnoise, audacity
- (mono wav 16bit/44100Hz gives the best quality/space ratio)
-
- 44100Hz is MANDATORY. On some system with bad supported sound card
- other frequency lead to major troubles.
-
-- Save as WAV file
-- Apply loudness transform with sox if necessary.
- You may such script if the sound is too low :
- #!/bin/sh
- for i; do
- sox $i modif/$i vol 5.0 amplitude 0.05
- done
-- Transforming stereo to mono if needed
- sox y.wav -c 1 y2.wav
-
-- Transforming to 44100 Hz if needed
- sox y.ogg -r 44100 y2.ogg
-
-- In the directory where WAV files are run i
- oggenc -c "Copyright 2002 (name of author). This file is distributed under the terms of the GNU General Public License, either version 2 or ( at your option) any later version. See the file COPYING for details." *.wav
- if ogginfo doesn't show you the comment, replace the -c to -a to store
- the copyright in the author field
-
-- Copy OGG files in the corresponding directory
-
-- Normalize them so that the all have the same volume level (replace ll by your locale)
- cd boards/sounds/
- normalize-ogg ll/*/*.ogg
-
-3) Shipping
- --------
-Once done, the easiest way is to tar all this files and send them to the gcompris maitainer.
-cd boards/sounds
-tar -cvzf sounds_my.tgz my
-
-4) Integration
- -----------
-Nothing has to be done, just run 'make install' at GCompris to level. The sounds
-will be installed in the proper directory and GCompris will play them.
-Run gcompris in your locale and you should ear your voices.
-
-5) Checking
- --------
-At top level, run:
-./tools/check_missing_voices.pl <locale>
-
-With for example locale being fr for French.
-
-