HackerTrans
热门最新趋势评论往期问答秀出招聘

tsiry

107 声望加入于 3年前

提交

显示 HN:Rockbox DSP、元数据和播放引擎的 FFI 绑定

github.com
2 分·作者 tsiry·5小时前·0 评论

Show HN:均衡器 – 用于原始 PCM 管道的实时终端均衡器

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