Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sound/tts
diff options
context:
space:
mode:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2015-09-09 10:38:05 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:05:46 +0300
commite84934eff63ce69c1755152b7df120db8e14ced1 (patch)
tree9ba1d6fb1acc1ed1161e3eb18b7c171f6addf750 /sound/tts
parentdfafce79bfd2ddad0429c9cbbc8043358a32497a (diff)
Adding some comments in python script.
Diffstat (limited to 'sound/tts')
-rwxr-xr-xsound/tts/sound_csv_to_sound_txt.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/tts/sound_csv_to_sound_txt.py b/sound/tts/sound_csv_to_sound_txt.py
index c50c453aaa..4297d7bfef 100755
--- a/sound/tts/sound_csv_to_sound_txt.py
+++ b/sound/tts/sound_csv_to_sound_txt.py
@@ -6,7 +6,11 @@ from optparse import OptionParser
import csv
import os.path
+# The number of a column in the google table which contains ids of sound strings.
ID_COLUMN = 1
+# MIN_PROCESSED_COLUMN and MAX_PROCESSED_COLUMN define the range of column in google table
+# which will be processed by the script. See the following link for the google table:
+# https://docs.google.com/spreadsheets/d/1gJsSzFpp2B3xnSx-RjjQ3Do66lQDhCxtfEnQo7Vrkw0/edit#gid=150382014
MIN_PROCESSED_COLUMN = 2
MAX_PROCESSED_COLUMN = 31