Amir Gonnen

Results 142 comments of Amir Gonnen

Hi Uli > I don't think it makes much sense to try implementing this example in MicroPython. In any case img.set_src will not work in MicroPython My thinking was to...

Hi Uli, > When I try to access lv.FFMPEG_PLAYER_CMD.START it tells me that lv.FFMPEG_PLAYER_CMD does not exist. We recently fixed a bug with qstrs, maybe this is related. Could you...

Hi Uli, I'm currently traveling and don't have access to a computer. I'll look into these issues when I'm back (by the end of August)

Hi Uli, > When I try to access lv.FFMPEG_PLAYER_CMD.START it tells me that lv.FFMPEG_PLAYER_CMD does not exist. `lv.ffmpeg_player.PLAYER_CMD.START` works well for me. ```python >>> lv.ffmpeg_player.PLAYER_CMD.START 0 >>> help(lv.ffmpeg_player.PLAYER_CMD) object is...

Hi Uli, > When trying to compile the unix port without any changes I get: > ![image](https://user-images.githubusercontent.com/1673533/187031785-b6c79b66-3f2a-48b6-8372-fe513f99cc1d.png) > so... I disabled USE_FFMPEG and recompiled OK! Strange. It works fine for...

> On my system I need to link libavutil in addition to libavformat, libavcodec and libwscale. Then things work! It's still not clear to me because both `libavcodec` and `libavformat`...

> @amirgon On my system (Arch) this is the output I see when running `pkg-config`; is it the same for you? > > ``` > $ pkg-config --silence-errors --libs libavcodec...

> This, and similar changes break also other examples that worked fine before. The examples already on LVGL were fixed when I introduced this change, so I think you only...

Are you referring to the unix port or js port? You can try increasing the heap size in [main.c](https://github.com/lvgl/lv_micropython/blob/a71d593c2fe05bf3ae0c0b3713760745de81b476/ports/unix/main.c#L63) I think you can also set it from the command line...

> ```python > import lvgl as lv > from display_driver_utils import driver, ORIENT_LANDSCAPE > drv = driver(width=800, height=640, orientation=ORIENT_LANDSCAPE) > ``` This seems to work correctly on the unix port....