Last active
July 18, 2018 03:36
-
-
Save BlogBlocks/432b4d96a52057c16229c4a89e0186f9 to your computer and use it in GitHub Desktop.
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
| """ | |
| MP3 playlist created to be used in syncing an audio/slide program . | |
| Usage: | |
| for example to load the 'TestText2.txt.mp3' | |
| import MP3play | |
| sound_file = MP3play.play()[2] | |
| """ | |
| def play(): | |
| mp3File0 = 'TestText0.txt.mp3' | |
| mp3File1 = 'TestText1.txt.mp3' | |
| mp3File2 = 'TestText2.txt.mp3' | |
| mp3File3 = 'TestText2.txt.mp3' | |
| mp3list = (mp3File0 ,mp3File1 ,mp3File2 ,mp3File3) | |
| return mp3list | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment