3025EMC Master Control Switching & Channel Branding
Page 204 Revision 3.0.3
9.6.2. Starting the Up/Down Timer
Starting the Up/Down timer is configured by using the following playlist script commands…
--------------------------------------------------------------------------------------------------------------------------------------------
cmd udt_param(“a timer b direction xx min yy sec”)
cmd udt_reload(“z”)
cmd media_in(“timer”)
cmd udt_start(“d”)
where
- “timer” is the name of the up/down timer template. The template name is limited to sixteen characters.
- “d” is the up/down timer to be started. This is either 1 (timer 1) or 2 (timer 2).
--------------------------------------------------------------------------------------------------------------------------------------------
IMPORTANT: The media must be faded-in/cue’d BEFORE the up/down timer
object is started.
9.6.3. Stopping the Up/Down Timer
Stopping the Up/Down timer is configured by using the following playlist script command…
--------------------------------------------------------------------------------------------------------------------------------------------
cmd udt_stop(“s”)
where
- “s” is the up/down timer to be stopped. This is either 1 (timer 1) or 2 (timer 2).
--------------------------------------------------------------------------------------------------------------------------------------------
9.6.3.1. Example Stop Counting Down After 20 Seconds
This is an extension to the previous example in section 9.6.1.2.
--------------------------------------------------------------------------------------------------------------------------------------------
# VSSL PLAYLIST
cmd udt_param(“2 timer 1 direction 30 min 00 sec”)
cmd udt_reload(“2”)
cmd media_in(“timer2”)
cmd udt_start(“2”)
cmd wait_for(“20 s”)
cmd udt_stop(“2”)
--------------------------------------------------------------------------------------------------------------------------------------------