Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. 3rd Party Software
  4. USB over Network camera is not working

USB over Network camera is not working

Scheduled Pinned Locked Moved Unsolved 3rd Party Software
1 Posts 1 Posters 440 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    aliemrenebiler
    wrote on last edited by
    #1

    We designed an interface with three camera views, it detects cameras via QML files:

    import QtQuick 2.0
    import QtMultimedia 5.9
    
    Item {
        Rectangle {
            anchors.fill: parent
            width: parent.width
            height: parent.height
            color: 'black'
        }
    
        Camera {
            id: camera
            // kamera seçimi yap
            deviceId: QtMultimedia.availableCameras[1].deviceId
        }
    
        VideoOutput {
            source: camera
            anchors.fill: parent
            focus : visible // to receive focus and capture key events when visible
        }
    }
    

    We also use USB over Network app to connect other devices cameras, but Qt has a problem with it.
    It detects the network camera but won't show it. It just shows a black screen. Normally the app connects perfectly, we can use the network camera with other camera apps. How can we solve this? Why we can't get the data from network cameras.

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved