Hi!
There are several audio-files which are play through Bark system.
I use in Secuence:
SendMessage (OnUse, Ivy) @7;
Audio (Voiceover/Ivy/ivy00012_01)
It is necessary that the following OnUse was sent in a 1sec after completion of playing of the current sound file.
How to make it?
How to play audio files in Bark with pause 1sec?
How to play audio files in Bark with pause 1sec?
- Attachments
-
- bark.png (41.92 KiB) Viewed 804 times
Re: How to play audio files in Bark with pause 1sec?
Hi,
Try this:
This is what it does:
Try this:
Code: Select all
AudioWait(Voiceover/Ivy/ivy00012_01)->Message(AudioDone);
Delay(1)@Message(AudioDone)->Message(DelayDone);
SendMessage(OnUse, Ivy)@Message(DelayDone)
- AudioWait(Voiceover/Ivy/ivy00012_01)->Message(AudioDone); -- Plays the audio and waits until it's done. Then sends the sequencer command "AudioDone".
- Delay(1)@Message(AudioDone)->Message(DelayDone); -- Waits until it receives the sequencer message "AudioDone". Then delays 1 second. Finally, sends the sequencer message "DelayDone".
- SendMessage(OnUse, Ivy)@Message(DelayDone) -- Waits until it receives the sequencer message "DelayDone". Then sends the OnUse message.