Benjamin

Results 144 comments of Benjamin

Also, my information could be out of date, but I don't believe OSX has any native support for multi-button mouse. My understanding is that you need to use some kind...

That's strange. It could be that _dragging_ in particular is not supported. It might be worth while just adding a note to the codebase, and merging in what you have...

Hi, Could you try this example, and see if it works as expected? https://github.com/pyglet/pyglet/blob/pyglet-1.5-maintenance/examples/text/text_input.py

Unfortunately we're currently lacking anyone with M1 hardware to look into this. Can you check with the latest code from the master branch, and see if that behaves any different?

The FFmpeg decoder needs more work to support 24bit audio. This is because FFmpeg always pads the sample packets to 32bit, when decoding 24bit samples. Starting here, we incorrectly assuming...

Does it look like at this stage, it's truncating it down to 24bit packets? https://github.com/pyglet/pyglet/blob/31a8decabc60e2161f0e73c1cd5595ae4dc862fc/pyglet/media/codecs/ffmpeg.py#L741 It didn't play correctly for me the last time I tried it, but I can't...

Thanks for opening the ticket. Are you using threading anywhere in your program? If not, is it possible to make a small standalone example that might trigger the crash if...

Unfortunately this is not currently possible to do in pyglet.

It would need to be implemented in the window platform code for all platforms, but so far no one has done that work. It should be possible, but I don't...