triggerfinger-debug
triggerfinger-debug
I think the problem is in the line `audio_frame.data = np.zeros((4, 1920), dtype=np.int16)` works if changed to ``` data = np.zeros((4, 1920), dtype=np.int16) audio_frame.data = data ```
Absolutely. First had to find my wifi dongle. Here is the outputs with the new command: ``` Collecting git+https://github.com/sonos/pyFLAC.git@feature/arm64-build Cloning https://github.com/sonos/pyFLAC.git (to revision feature/arm64-build) to /tmp/pip-req-build-c63lvjo2 Running command git clone...
Also tried building the wheel, and same "Illegal instruction": ``` python3.8 setup.py build running build running build_py creating build creating build/lib.linux-armv6l-3.8 creating build/lib.linux-armv6l-3.8/pyflac copying pyflac/decoder.py -> build/lib.linux-armv6l-3.8/pyflac copying pyflac/__init__.py ->...
I think I got it working by replacing [libFLAC-8.3.0.so](https://github.com/sonos/pyFLAC/blob/develop/pyflac/libraries/raspbian-armv6z) with a copy from apt repository. It builds fine and I am able to import without problem.