erdnaxe

Results 31 comments of erdnaxe

To crop animated GIF with PIL, you can crop each frame. I implemented something similar here: https://gitlab.crans.org/bde/nk20/-/blob/master/apps/member/forms.py#L100-127 ```python im = Image.open(image) # Crop each frame frames = [] for frame...

Hi! In STM32CubeIDE by default two files `STM32F030R8TX_FLASH.ld` and `STM32F030R8TX_RAM.ld` are generated (on STM32F4 at least). Then using the debug configuration GUI it's possible to choose between the two. Because...

`HTMLMediaElement.volume` does no go above 100%, but actually the client could route audio through an `AudioContext` to allow for over-amplification. Is this something that Galène would like to include ?...

It turned out that the problem might not come from the regex but from the fact that the regex is applied on the non-encoded URL. This is correctly parsed by...

Found this StackOverflow post with some link to interesting libraries: https://stackoverflow.com/questions/37684/how-to-replace-plain-urls-with-links/21925491#21925491 We could use a library such as anchorme.js which seems to be rather accurate but it adds a lot...

I just noticed that my terminal emulator (Alacritty) is matching URL quite well. Looking at the code, it's using which consist of one Rust file to match URLs. It does...

We want `group.APIFromNames()` to return a WebRTC API with RTX tracks for some names such as "vp8", i.e. we need either: - to change `group.codecFromName()` so that it returns a...

I changed `group.codecFromName` to return a list: As the RTX track needs to be defined with the payload of the video track, I also moved the payload definitions. If you...

From galene-stream/GStreamer perspective, another way to temporarily solve this may be to use one [rtprtxqueue](https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-good/html/gst-plugins-good-plugins-rtprtxqueue.html) object. If I understand the description of the object, it does exactly what is needed...

I am not convinced by the solution I proposed here. Maybe we could avoid showing something on the whole video and rather use `div.top-video-controls` to show an element when the...