HackerTrans
TopNewTrendsCommentsPastAskShowJobs

tsiry

107 karmajoined 3년 전

Submissions

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

github.com
2 points·by tsiry·3시간 전·0 comments

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

github.com
2 points·by tsiry·5일 전·0 comments

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

crates.io
2 points·by tsiry·7일 전·0 comments

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

github.com
3 points·by tsiry·10일 전·0 comments

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

github.com
4 points·by tsiry·20일 전·2 comments

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

tsirysndr.leaflet.pub
2 points·by tsiry·지난달·0 comments

[untitled]

1 points·by tsiry·2개월 전·0 comments

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

tangled.org
117 points·by tsiry·2개월 전·44 comments

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

github.com
123 points·by tsiry·2개월 전·28 comments

Hacking Rockbox to Stream Audio over HTTP

rockbox-desktop.leaflet.pub
1 points·by tsiry·3개월 전·0 comments

comments

tsiry
·5일 전·discuss
[dead]
tsiry
·19일 전·discuss
Thanks! Hope you find it useful. Happy to answer any questions or feature requests if you give it a try
tsiry
·2개월 전·discuss
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개월 전·discuss
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개월 전·discuss
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개월 전·discuss
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개월 전·discuss
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개월 전·discuss
Yes, interoperability is super important to me. I don't want users to rebuild their entire setup just to try Rocksky.
tsiry
·2개월 전·discuss
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개월 전·discuss
https://rocksky.app
tsiry
·2개월 전·discuss
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개월 전·discuss
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개월 전·discuss
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개월 전·discuss
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개월 전·discuss
https://rockboxzig.mintlify.app