Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. How to do IP Camera Live Streaming video Recording in Qt Quick
Forum Updated to NodeBB v4.3 + New Features

How to do IP Camera Live Streaming video Recording in Qt Quick

Scheduled Pinned Locked Moved Unsolved QML and Qt Quick
3 Posts 2 Posters 2.2k 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.
  • M Offline
    M Offline
    martiny
    wrote on last edited by
    #1

    Hi Everyone,

    I'm trying to develop Qt Quick application for access(play, pause and stop) the IP Camera and Recording the video from IP Camera.
    In this first step, I can able to stream my IP camera visual in live using qml.
    Next I have to do video recording on live streaming from IP camera.
    How to do this? Any idea for this?

    jsulmJ 1 Reply Last reply
    0
    • M martiny

      Hi Everyone,

      I'm trying to develop Qt Quick application for access(play, pause and stop) the IP Camera and Recording the video from IP Camera.
      In this first step, I can able to stream my IP camera visual in live using qml.
      Next I have to do video recording on live streaming from IP camera.
      How to do this? Any idea for this?

      jsulmJ Offline
      jsulmJ Offline
      jsulm
      Lifetime Qt Champion
      wrote on last edited by
      #2

      @martiny said in How to do IP Camera Live Streaming video Recording in Qt Quick:

      How to do this? Any idea for this?

      https://doc.qt.io/qt-5/qml-qtmultimedia-camerarecorder.html

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      M 1 Reply Last reply
      0
      • jsulmJ jsulm

        @martiny said in How to do IP Camera Live Streaming video Recording in Qt Quick:

        How to do this? Any idea for this?

        https://doc.qt.io/qt-5/qml-qtmultimedia-camerarecorder.html

        M Offline
        M Offline
        martiny
        wrote on last edited by
        #3

        Hi @jsulm,

        I'm using this code to stream my IP Camera video and it's working fine. Here i'm not using direct camera from device instead I'm using IP Camera. So, I can't able to access CameraRecorder in my Qml.
        Is there any other option for IP Camera live stream video recording.

        MediaPlayer {
        id: videoPlayer
        source: "rtsp://192.168.2.119/554"
        muted: true
        autoPlay: true
        autoLoad: tru
        }

        VideoOutput
        {
        id: camera1
        width: 1920
        height: 1080
        anchors.fill:parent
        source: videoPlayer
        }

        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