Mahmoud

Results 11 comments of Mahmoud

```python from IPython.display import HTML, display import base64 def Video(path, width=800, type='mp4'): display(HTML(f"" )) Video('vid.mp4') ``` works fine on videos with relatively small sizes. ref: https://stackoverflow.com/a/68294183, https://stackoverflow.com/a/57378660

@thornycrackers Thanks bro, reinstalling v4l2loopback as you suggested came with support for the other formats. Switching to `YUY2` fixed color glitch for me.

I missed around with the resolution for awhile but none fixed the problem for me. Switching to `YUY2` did the trick.

Switching to `YUY2` fixed color glitch for me.

@ochen1 didn't work.

mp4 can be converted to webp using ffmpeg: ```bash $ ffmpeg -i video.mp4 -vcodec libwebp -lossless 1 -loop 0 -preset default -an -vsync 0 -strict -1 output.webp ```` There are...

Consider running this regular expression as a data-cleanup step `\\u[0-9a-z]{4}` before handing it over to quicktype.

It seems to be something is wrong with infer `v1.1.0`. try switching back to `v1.0.0`.

does this also happen with version infer v1.0.0?

you don't have to explicitly execute `neato`. just set the engine inside your graph using the `layout` attribute and `dot` will call `neato` for you.