Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. stream
    Log in to post

    • UNSOLVED Streaming media from DLNA server
      Brainstorm • multimedia networking stream dlna • • JordanHarris  

      7
      0
      Votes
      7
      Posts
      3360
      Views

      I've never used one but I know the device. You should try to contact the VLC team to see with them how they proceed with the UPnP/DLNA part.
    • SOLVED Printf to stream
      General and Desktop • stream printf • • MartinD  

      5
      0
      Votes
      5
      Posts
      1594
      Views

      Sorry, I didn't meant it as drop-in replacement. Thanks for the example. Note that I'd rather recommend the use of QLoggingCategory for that kind of task.
    • How to display RTSP Stream using QT? I already used LibVlc-QT for display, but i didn't get control over stream after using this library. So I don't want to use LibVlC QT.
      Mobile and Embedded • ubuntu 14.04 imx6 stream rtsp • • kuber saini  

      10
      0
      Votes
      10
      Posts
      20863
      Views

      oops.. Sorry for the name. Actually I am developing my application for Ubuntu and right now no plan to port on other platform. But If I face any problem I will post here.. :D Thanks tomasz3dk :)
    • play rtsp stream QMultimedia
      General and Desktop • qmediaplayer qmultimedia stream qgraphicsvideoi • • SansBlague  

      1
      0
      Votes
      1
      Posts
      1762
      Views

      No one has replied

    • QPlainTextEdit can not handle large amounts of text
      General and Desktop • qplaintextedit logging log stream konsole • • Jarggoh  

      2
      0
      Votes
      2
      Posts
      1558
      Views

      Hi and welcome to devnet, One thing in you code is that in your receive function your are looping over each byte you received and ask to update the widget. What is generally done when handling large amount of data in such small amount is that the processing is done in a different thread. Also the UI update should be batched, there's no real benefit to update your QPlainTextEdit content for every single byte you get. Hope it helps