Skip to content

Instantly share code, notes, and snippets.

@datajake1999
datajake1999 / read-dls.py
Last active July 25, 2020 06:46 — forked from McMartin/read-dls.py
Read DLS file using Python
import struct
import sys
from chunk import Chunk
FOURCC_DLS = b'DLS '
FOURCC_DLID = b'dlid'
FOURCC_COLH = b'colh'
FOURCC_WVPL = b'wvpl'