Skip to content

Instantly share code, notes, and snippets.

@valmcc
valmcc / bwavbarextract.py
Last active July 10, 2022 03:13
Extracts all sound effect files for Animal Crossing New Horizons
# 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')