Kevin Wang
Kevin Wang
Does using ffmpeg work? ffmpeg can take in multiple RTP streams and mux them into a container: https://stackoverflow.com/questions/39411901/how-can-i-merge-two-input-rtp-streams-in-ffmpeg Since there are a lot of container formats, maybe we should add...
> it'd mean doing another network hop + introducing ffmpeg's network stack You can avoid this by directly calling libavformat/libavcodec in cgo. We do this here: https://github.com/muxable/sfu/tree/main/pkg/av I think this...
Thanks for the ticket. Do you have an example/use case in mind? I'm inclined to say no, because NaN is a number type in python, thus we should translate to...
Ah I see, thanks for the information. I will think of a good API to do this. We've received a couple similar feature requests in the past, but yours lays...
Ok I've thought about this issue more and I've struggled to come up with an ergonomic API as there are a lot of edge cases and unusual behaviors. I think...
`range("B2")` refers to a specific cell, so this would be ambiguous as to whether or not you want to write the array to the cell or to the range. Additionally,...
PyExcelerate isn't a replacement for Excel and we don't aim to have the same API as it. Setting the value of a range is not identical to pasting, and it...
Because they are fundamentally different. PyExcelerate is not Excel nor VBA, you can't shoot yourself in the foot and overwrite data in Excel because you can see the overwriting ocurring...
Thanks for the report, this one might be tricky to fix. Seems like the spec is a bit vague here, but we'll take a look.
Yeah the spec is kind of vague about how to accurately specify this kind of situation. I'll take a look but it'll require a bit of experimentation to see what...