Kyle Simpson
Kyle Simpson
It should be yes, thanks for the reminder!
Thanks. It looks as though all seek errors are being folded into `Unsupported` for some reason, changing this might help identify what's *actually* happening. It should be trying to make...
I don't personally have any plans to implement this (since I don't use youtube-dl all that much), but if you want to add [a new error variant](https://docs.rs/songbird/0.2.0/songbird/input/error/enum.Error.html) by parsing `stderr`...
It looks as though you're trying to pass raw/ogg-framed Opus data in as though it were DCA (a discord-focussed format). Unfortunately, songbird doesn't support ogg framing, and raw frames are...
I tried to reproduce something like this last night before implementing #96, but couldn't cause any odd behaviour. Can you explain exactly what commands stop when a track ends?
That's unusual, since it looks like you hit a segfault (google "code 139"). None of the init code should really be capable of that. I suspect it's due to your...
Strace probably won't help: you need to check your program in gdb, lldb, or valgrind to see what operation in what thread is actually causing the segmentation fault. Given that...
It looks as though the FFI is calling a null pointer, so audiopus might not have linked to opus correctly on account of the Alpine setup. There's an RC version...
From lack of context, I assume you're on v0.3? You can likely parse the json output from `yt-dlp` yourself and create sub-requests that way -- this version won't receive any...
This is harder than it looks. Youtube gives you WebM which *contains* Opus; if you want to pass that through, you need a full MKV parser/demuxer. Most standalone `*.opus` files...