Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Gstreamer video over ip receive in Qt

Gstreamer video over ip receive in Qt

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 2.5k Views 1 Watching
  • 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
    ali.pro
    wrote on last edited by
    #1

    Hi
    I want to receive video streaming from my Arm board to my PC.
    I use this code to stream from my Arm board:

    ./capture -c 10000 -o | gst-launch-0.10 -v -e filesrc location=/dev/fd/0 ! h264parse ! rtph264pay ! udpsink host=192.168.1.20 port=1234

    and for receive in my PC :

    gst-launch udpsrc port=1234 ! "application/x-rtp, payload=127" ! rtph264depay ! ffdec_h264 ! xvimagesink sync=false

    I want to import video in Qt for using video in Qt.

    1 Reply Last reply
    0
    • A Offline
      A Offline
      andreyc
      wrote on last edited by
      #2

      if you use gstreamer-0.10 then you can use "Qt Multimedia Framework":http://qt-project.org/doc/qt-5.0/qtmultimedia/multimediaoverview.html

      Take a look on examples/multimediawidgets or examples/multimedia if you use QML.

      I was able to play rtsp stream with examples/multimediawidgets/player/ Just need to modify
      @void Player::open()@

      to make it to accept rstp link instead of local file.

      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