StackedCrooked
StackedCrooked

Reputation: 35485

Play RTP video stream using Qt?

I want to create a Qt widget that can play incoming RTP streams where the video is encoded as H264 and contains no audio.

My basic plan for implementation is this:

My environment:

My questions:

Edit
One solution I found is using libVLC in combination with Qt, which I learned about in this thread. Here's a code sample for the interested. I'm still looking for a Phonon-based solution.
Ideally I would only need to provide an SDP file and job is done.

Upvotes: 8

Views: 17302

Answers (2)

StackedCrooked
StackedCrooked

Reputation: 35485

I was able to get it to work using the libVLC solution. I can't garantuee that this is the best solution though as I simply stopped looking after that.

Here's a link to the libVLC sample.

Upvotes: 3

Vicken Simonian
Vicken Simonian

Reputation: 411

The way I understand Phonon works at least in Windows is that QT provides a phonon backend plugin for DirectShow (\plugins\phonon_backend\phonon_ds94.dll) and GStreamer in your case. Then you would either obtain or write your own DirectShow filter which can accept RTP streams as a source. DirectShow takes care of the decoding, and Phonon will take care of the rendering.

So if the backend works, the application code is as simple as:

        Phonon::MediaObject *media = new Phonon::MediaObject();
        Phonon::VideoWidget *video = new Phonon::VideoWidget();
        Phonon::createPath(media, video);
        media->setCurrentSource(source);
        media->play();

Seems that the problem lies with the GStreamer backend accepting RTP as a source. Can you playback that source in standalone GStreamer without any problems?

Upvotes: 2

Related Questions