HackerTrans
トップ新着トレンドコメント過去質問紹介求人

tsiry

107 カルマ登録 3 年前

投稿

Show HN: FFI bindings for the Rockbox DSP, metadata, and playback engine

github.com
2 ポイント·投稿者 tsiry·3 時間前·0 コメント

Show HN: Equalizer – a real-time terminal equalizer for raw PCM pipes

github.com
2 ポイント·投稿者 tsiry·5 日前·0 コメント

Show HN: rockbox-dsp – A reusable Rust DSP library extracted from Rockbox

crates.io
2 ポイント·投稿者 tsiry·7 日前·0 コメント

Show HN: Fin – a TUI Jellyfin client powered by mpv with Chromecast support

github.com
3 ポイント·投稿者 tsiry·10 日前·0 コメント

Show HN: Smolsonic – A Subsonic-compatible music server written in Rust

github.com
4 ポイント·投稿者 tsiry·20 日前·2 コメント

Show HN: Zerod – a Rust daemon to drive Bluetooth audio on a Pi Zero W

tsirysndr.leaflet.pub
2 ポイント·投稿者 tsiry·先月·0 コメント

[untitled]

1 ポイント·投稿者 tsiry·2 か月前·0 コメント

Show HN: Rocksky – Music scrobbling and discovery on the AT Protocol

tangled.org
117 ポイント·投稿者 tsiry·2 か月前·44 コメント

Show HN: A modern Music Player Daemon based on Rockbox firmware

github.com
123 ポイント·投稿者 tsiry·2 か月前·28 コメント

Hacking Rockbox to Stream Audio over HTTP

rockbox-desktop.leaflet.pub
1 ポイント·投稿者 tsiry·3 か月前·0 コメント

コメント

tsiry
·5 日前·議論
[dead]
tsiry
·19 日前·議論
Thanks! Hope you find it useful. Happy to answer any questions or feature requests if you give it a try
tsiry
·2 か月前·議論
Thank you! I completely agree, the recommendation/discovery aspect is probably the most important part of platforms like Last.fm. Right now Rocksky is still relatively early and most recommendations are based on listening similarity/social data rather than heavy AI models. The nice thing with ATProto is that the social graph and listening history are open, which makes it possible to experiment with different recommendation approaches. There's definitely still a lot of work to do there.
tsiry
·2 か月前·議論
Mostly yes, but with one important detail. Rocksky has a minimal ListenBrainz-compatible API, so duplicating the ListenBrainz integration and pointing it to the Rocksky endpoint should work for basic auth + submit/scrobble. The current limitation is that Rocksky doesn't implement the full ListenBrainz API yet, so anything beyond auth + submitting listens may not work the same way. I'm trying to keep this path as simple as possible because compatibility with existing scrobblers is important for adoption.
tsiry
·2 か月前·議論
That's fair honestly, "Scrobbling" is such an old Last.fm-era term that people already in that ecosystem forget it sounds weird to everyone else. In practice it just means automatically tracking the music you listen to (songs, artists, albums, listening history, stats, recommendations, etc.). I should probably explain that more clearly on the repo/site.
tsiry
·2 か月前·議論
Rocksky itself isn't a streaming service, it tracks what you listen to from other apps/services and builds discovery/social features arround that listening history.
tsiry
·2 か月前·議論
OAuth is possible, but the tricky part is not really the auth flow, it's the client-side ATProto write logic. To scrobble properly, the client needs to keep enough historical scrobble state to avoid duplicates, and Rocksky doesn't only publish a scrobble record. It may also need to publish related records like artist, album, and track metadata. So I'd like to make the integration easier, but it needs a bit more than "just OAuth".
tsiry
·2 か月前·議論
Yes, interoperability is super important to me. I don't want users to rebuild their entire setup just to try Rocksky.
tsiry
·2 か月前·議論
Thank you! Last.fm was a huge inspiration for Rocksky. I still think scrobbling and social listening are some of the best ways to discover music. Hoping to bring a more open and modern approach to it with ATProto.
tsiry
·2 か月前·議論
https://rocksky.app
tsiry
·2 か月前·議論
Funny timing, I'm actually working on my own scrobbling platform too: Rocksky https://rocksky.app . It's built on the AT Protocol and focuses both on listening stats and social/discovery features, while still staying open and developer-friendly. Still very actively developed, but if you're interested I'd love to hear feedback from longtime scrobbler users
tsiry
·2 か月前·議論
Honestly, mostly for fun and love of Rockbox, I've wanted it on my desktop since 2010 and nobody else was going to build it :) That said, Rockbox does bring real things: a battle-tested DSP chain (crossfeed, EQ, replaygain, dithering), gapless playback that actually works everywhere, codec coverage most players have given up on (Musepack, WavPack, ...). It's a lot of mature work to throw away.
tsiry
·2 か月前·議論
they're at different layers. libmpv is a full media player: demuxing, decoding (via FFmpeg), DSP, output. cpal is just a thin cross-platform PCM sink on top of CoreAudio/ALSA/WASAPI/etc.

Rockbox already brings its own decoders (20+ codecs), its own DSP chain (crossfeed, EQ, replaygain, gapless), and its own mixer. I just need the host OS to accept PCM frames. cpal is the minimal portable shim for that; pulling in libmpv would mean discarding Rockbox's audio pipeline and replacing it with FFmpeg's, which would basically defeat the point of building on Rockbox firmware.
tsiry
·2 か月前·議論
Author here. The real motivation: I've been a Rockbox fan since 2010, when I installed it on my iPod and it completely changed what that device could do. The UI, the codec support, the sheer hackability, nothing else has come close since.

I've wanted that same experience on my desktop for years. So I'm basically trying to bring Rockbox to macOS and Linux as a daemon I can use every day, with MPD-style control on top.
tsiry
·2 か月前·議論
https://rockboxzig.mintlify.app