Last active
May 20, 2020 07:55
-
-
Save atbaker/c5e50958a9990056b6160418b013e1b6 to your computer and use it in GitHub Desktop.
Wrap it up: music to wrap up a Zoom meeting a-la the Academy Awards
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- Learn how to make your own Twilio voice app at www.twilio.com/docs/voice --> | |
<Response> | |
<!-- First, say a short message for anyone who's testing the number --> | |
<Say voice="alice">Thanks for testing Wrap it Up, a Twil-e-o project by Andrew Baker. I'm now going to press 1 to join the Zoom call.</Say> | |
<!-- Play a sound representing a user pressing 1 on their dialpad, which Zoom requires before adding us to the meeting --> | |
<Play digits="1"/> | |
<!-- Wait a second for Zoom to add us to the meeting before starting to play the music --> | |
<Pause length="1"/> | |
<!-- Cue the orchestra (any MP3 file will work) --> | |
<Play>https://shelf-efficient-2159.twil.io/assets/wrapitup.mp3</Play> | |
<!-- Wait one second before hanging up, for comedic effect --> | |
<Pause length="1"/> | |
</Response> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment