Copying voice segments

You can use dtjplex -action copyVS to copy voice segments within the Java voice segment space.

Create a dtjplex control file, as shown in Figure 1 or Figure 2, and then execute the following command:

dtjplex -action copyVS [-host hostname | -allHosts] -controlfile filename 

Examples

Figure 1. Example of control file for copying voice segments to a different locale (any platform)
# Set overall parameter values:
segment_category=Pizzas
segment_locale=en_US
target_segment_locale=en_GB
# Set parameter values for individual segments:
segment_name=hello
;
segment_name=goodbye
;
segment_name=help
;
Figure 2. Example of control file for copying voice segments to a different category (any platform)
# Set overall parameter values:
segment_category=Pizzas
target_segment_category=Sandwiches
segment_locale=en_US
# Set parameter values for individual segments:
segment_name=hello
;
segment_name=goodbye
;
segment_name=help
;
Figure 3. Example of control file for copying voice segments to different names (any platform)
# Set overall parameter values:
segment_category=Pizzas
segment_locale=en_US
# Set parameter values for individual segments:
segment_name=hello
target_segment_name=HelloAndWelcome
;
segment_name=goodbye
target_segment_name=GoodbyeAndComeBackSoon
;
segment_name=help
target_segment_name=ForHelpMenuPressStar
;

To copy the voice segments specified in the file called pizzas.txt from all hosts:

dtjplex -action copyVS -allHosts -controlfile pizzas.txt

To copy the voice segments specified in the file called pizzas.txt from a host called annapurna:

dtjplex -action copyVS -host annapurna -controlfile pizzas.txt

To copy the voice segments specified in the file called pizzas.txt from the local host:

dtjplex -action copyVS -controlfile pizzas.txt

Related information