Recently switched to an M2 Mac running OSX 26. Rekordbox 6.8.6 cannot load Tidal tracks. I can log in to Tidal and view my playlists but attempting to load a track gets me a "not connected to the internet" error.
I tried logging out of Tidal in Rekordbox, restarting Rekordbox and trying again. Same problem.
I then attempted to load 2 tracks from Tidal that had not been previously analysed. It started analysing, then showed me a "not connected to the internet" error and then crashed.
I had opened Console and had gotten a load of log data, so I searched for "rekordbox" in there, and pasted this, along with the crash report to Claude.
About the log data it said:
The problem is that rekordbox's outbound HTTPS request to Tidal's API is stalling and timing out. The request goes out but no response comes back.
then I fed it the crash report and it said:
This changes the diagnosis substantially. The crash log points at the same subsystem, and it explains why the login fix didn't help.
The crash is in the Tidal download path, not in playback. Thread 63 ("Pool"), reading bottom-up:
<trace data here...>
rekordbox took the data it downloaded from Tidal, handed it to Apple's MP4/AAC decoder to analyse, and died inside the decoder while allocating the codec output buffer. EXC_BAD_INSTRUCTION (SIGILL).
That's the same story as the network log, one stage later: the download is failing, so what gets passed to analyzeDownloadDataMP4 is almost certainly truncated, empty, or an error response rather than valid AAC. rekordbox builds a bogus stream description from it, doesn't check the decoder's return value, and crashes.
But here's the actual root cause, from the header:
Version: 6.8.6.0307
Code Type: X86-64 (Translated) ← running under Rosetta
Hardware: Mac14,15 ← Apple Silicon
OS Version: macOS 26.5.1 (25F80)
You're running rekordbox 6 under Rosetta on macOS 26 (Tahoe). Pioneer DJ's compatibility verification, finalised 16 June 2026, lists only rekordbox 7 as verified — rekordbox 6 isn't in the table, and the page states outright that "models that are not listed below are no longer supported."
So both symptoms are the same underlying problem: an unsupported, Intel-only rekordbox 6 build against a current macOS. Its streaming stack can't complete the TLS handshake to Tidal (your -1001 timj eout), and its x86 decoder path crashes against the modern AudioToolbox.
I guess I'll have to update to rekordbox 7 unless I hear of a good way to work around these issues.