Jump to content

Boghos

uniGUI Subscriber
  • Posts

    10
  • Joined

  • Last visited

Posts posted by Boghos

  1. Hi Sherzod

     

    thank you for your prompt reply. i got my front end developers on the case and they fixed the issue with this in customerCSS:

     

    .x-grid-item-container {
        background: #262d36;
    }

    .x-grid-item {
       background: initial;
    }
                                
    .x-grid-item:hover {
       background: #2d353D;
    }

    .x-tree-view {
        background: #262d36;
    }

    .x-panel-body {
        background: #262d36;
    }
    .x-grid-item-selected {
        background: #2d353D;
    }   
     

  2. Thanks Sherzod for the prompt reply.

    I have read all the rtsp post and they are all pointing at HLS. we already have an HLS player that renders on the client side. that works great when we have one or two streams. Once we go above that the browser is struggling with the decoding, rendering and display. This is why i am trying to do that hard work on the server side using an NVidia GPU and just passing images to the client to display. I have a thread that is running on the server side and updating the UniImage component but the image on the client does not change. 

    So the full pipeline is complete and i can see the live images with rendering if I use a standard TImage component on a VCL form, but when we switched to UniGui server application and UniImage then there is no refresh after the first frame.

    Is there a way to force UniImage to redraw?

    BTW the cache bitmap is not updating on disk either.

    Thank you

  3. Hi all

    I am new to UniGui and thus far I am very impressed. We are trying to create a video player with overlay from RTSP source. So the server is developed to connect to and RTSP source and receive H.264 video then decode and render some graphics. The result is a bitmap every 40msec. I am applying this to the UniImage component on the client side but a do not see any update until a button is clicked. I am using the assign method: 

    VideoPlayerFrameWeb1->OutputImageWeb->Picture->Assign(VideoPlayerFrameWeb1->OutputImage->Bitmap);

    I looked through the comments on other threads and couldn't find a way to force the image to redraw the new bitmap. 

    I appreciate any advice

    p.s. we are developing in Builder C++ 10.4

    thank you

×
×
  • Create New...