arkrow

Results 32 comments of arkrow

There might be a segmentation fault or a similar error that causes it to crash silently. To investigate, I've enabled Python's `faulthandler` to catch and print any potential faults in...

The garbled output is the same on my end and might be an issue with how `pipx run` writes to the terminal on Windows (works fine on Linux/WSL). > It...

> C:\Users\\pipx\venvs\pymusiclooper\Lib\site-packages\librosa\core\intervals.py:15: DeprecationWarning: path is deprecated. Use files() instead. Refer to https://importlib-resources.readthedocs.io/en/latest/using.html#migrating-from-legacy for migration advice. This is a deprecation warning, not an error, so it wouldn't be the cause for...

Quick update on this issue: - The root cause is still unknown, but is suspected to be environment-related - As a potential workaround, I added the ability to build an...

The latest release as of this comment ([v3.4.1](https://github.com/arkrow/PyMusicLooper/releases/tag/v3.4.1)) now has a compiled exe binary for Windows, no python or other dependencies needed. Only `ffmpeg` is optional for certain files. Try...

Having a docs page would be great. I've actually looked through several tools previously, but they always had some quirk/annoyance, then unfortunately I got busy and never really continued working...

> Just wondering if we could get an exe for the latest version added to GitHub? Sure, I'm currently in the process of refactoring a few minor things and setting...

It looks like `libsndfile` runs into a segfault on Windows, causing the silent crash. Enabling the python faulthandler `import faulthandler; faulthandler.enable()` shows the following message (truncated for clarity): ``` Windows...

Closed since poetry is no longer being used. The project shifted to using `uv` for easier tooling and future integration with maturin.

Hmm, this might be an edge case based on the configured STDOUT terminal. As can be seen below, the logic is very simple and has no wrapping, but the `print`...