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
| # FFMPEG example of Blocking Mode Audio I/O https://people.csail.mit.edu/hubert/pyaudio/docs/ | |
| """PyAudio Example: Play a wave file.""" | |
| import pyaudio | |
| import wave | |
| import sys | |
| import subprocess | |
| CHUNK = 1024 |
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
| import sys, os | |
| from cx_Freeze import setup, Executable | |
| project_name = "My Tkinter App" | |
| exe_name = "MyTkinterApp" | |
| version = "1" | |
| main_script = "main.py" | |
| optimization = 0 | |
| resources = [] | |
| packages = ["tkinter"] |
NewerOlder