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
| # Extracts .bars files (like in Animal crossing New Horizons) into .bwav files | |
| # (These are for sound effects) | |
| # Place in your /Sound/Resource folder, it will then convert all the .bars files to .bwav files (output to /output_bwav) | |
| # run with "python .\bwavbarextract.py" | |
| # Tested with Python 3.8.2 on Windows 10 | |
| # By Valer (3/May/2020) (valmcc) | |
| import glob | |
| import os | |
| import re | |
| bars_list = glob.glob('./*.bars') |