Simulator cannt load lottie json file

Hi everyone.
I am new in lvgl, and trying to use lottie in lvgl simulator. I can show it in raw data, but it can’t load
with lottie json, and it prints

[Warn]  (0.000, +0)      lv_rlottie_constructor: The aniamtion can't be opened  (in lv_rlottie.c line #119)

here is my code

    lv_obj_t *icon_1 = lv_rlottie_create_from_file(lv_scr_act(), 500, 500, "S:/home/linxiaoyan/T113/3d.json");
    lv_obj_set_pos(icon_1, 175, 75);
    lv_obj_set_size(icon_1, 128, 128);

here is the folder includes

linxiaoyan@Arys-PC:~/T113$ ls
100ASK_T113-Pro_TinaSDK         Linux_develop     sunxi-livesuite
1.json                          lvgl9_demo        T113_Minipad
3d.json                         lv_lib_split_jpg  tina-d1-h
bootlogo.bmp                    OpenixCard
d1s-smart-home-central-control  rlottie
linxiaoyan@Arys-PC:~/T113$ pwd
/home/linxiaoyan/T113
linxiaoyan@Arys-PC:~/T113$ 

I’m sure the simulator file systerm is available, because i had loaded a img file and show successfully at same folder.
Thank you for any suggestions.

What MCU/Processor/Board and compiler are you using?

SDL lvgl-simulator

What LVGL version are you using?

v8.3.10

I found the solution in https://github.com/lvgl/lvgl/issues/6279#issuecomment-2143540612 , It can solve my question. :grinning: