Nick Guenther

Results 272 comments of Nick Guenther

I found https://github.com/horazont/aioxmpp/blob/beaa0062237619fc6d23757d3f55b2e05707f8f2/aioxmpp/protocol.py#L537-L538 which looks like it's what I want, but I can't figure out how to trigger it. I tried both: ``` logging.getLogger("aioxmpp.XMLStream").setLevel(logging.DEBUG) ``` ``` logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG)...

I'm having problems too, but with a different error on OpenBSD. OpenBSD 6.6 has OCaml 4.09 in packages right now (https://openports.se/lang/ocaml) and ``` $ opam install camomile The following actions...

I was thinking about this problem too. I think it might be better solved as a playlist plugin on the server side. For example, soundcloud:// URLs are handled by https://github.com/MusicPlayerDaemon/MPD/blob/ce49d99c2f3265f2975b2cff583684bf191bbd93/src/playlist/plugins/SoundCloudPlaylistPlugin.cxx....

Also, YouTube streams don't have the metadata nicely embedded and they probably aren't the only one, so we should fall back on `youtube-dl`'s metadata extractors would be good. If I...

Oh snap, someone forked the entire project to add this feature: https://github.com/bjuriewicz/ympd-youtube But they did it by adding a folder to cache mp3s to and running ``` youtube-dl --max-quality=140 --extract-audio...

ympd-youtube and maympd both ask youtube-dl to download the file and embed id3 tags in it, so then mpd will load up the metadata correctly. But I'd rather stream, not...

I was wrong. The reopen is unimportant, and I've removed that part. `sleep(5)` was the only key, and that is entirely because the 2nd stage needs a moment to boot.

An addendum! Somehow (via the .msi?) my user account has ended up with C:\tools\python3\Scripts in its %PATH%, but the System %PATH% does not have it, which is why. I am...

I'm running a workflow that uses `actions/upload-artifact@v2-preview` to save the build for different platforms, then a final build step that uses `actions/download-artifact` to collect the builds and `actions/create-release` + `actions/upload-release-asset`...