Kevin Wang
Kevin Wang
I created a PR to add some logging, and add the `force_zip64` change above. https://github.com/kz26/PyExcelerate/pull/178 If you're running into this issue, give that PR a shot and see if there's...
I suspect the validation step is slowing your code down: https://github.com/kz26/PyExcelerate/blob/dev/pyexcelerate/Worksheet.py#L166-L168 You can get around it by doing something like: ```py worksheet._merges.append(worksheet.range(...)) ``` Probably the proper way to do this...
> Curious how progress on this is going. Would love to see this feature land! Likewise. Is this just waiting for review? We have a very high pull request velocity...
Inspired by this PR, I've been working on adding WHIP support to FFmpeg here: https://github.com/kevmo314/ffmpeg-webrtc It uses the same Rust module, would it make sense to share the library between...
> Do we need that to save bytes? Yes, although since it's only a few bytes I figured I'd do it in a followup PR 😅 > And second question:...
> Hi @kevmo314 sorry I didn't reply to this earlier. I don't think we should add the loss rate to the `BandwidthEstimator` interface, because it is not clear if all...
I discovered that this was due to RTPSender having too complex of type signatures for gobind to correctly bind. Unfortunately the fix is not very easy :( To work around...