0

I want to create an application through which i need to play a video file with audio(need to play almost all kinds of videos).

I need it for Windows and Linux(atleast for windows).

I am planning to use QT or any other package?. How to do?

I need a GUI as http://www.youtube.com/watch?v=mA883X4uaHk (pl watch from .35s)

My Project Description: 1.Need to play a video in a thread 2.In an another thread. Parallely, need to capture the webcam video and need to process the
webcam frames with Opencv algorithms which plots the graphs.

Planning to duplicate the youtube video application. I have to use threads as well. And opencv supports QT .

What have i done: Used Java Media Framework to playback which fails as it dosn't support all the formats.

4

3 に答える 3

1

Qt5 を使用する場合は、Multimedia モジュールに必要なものがすべて含まれています。ビデオ/カメラの各フレームにアクセスして処理できます。同じビデオ サーフェスを使用してビデオを再生し、Web カム フレームを表示できます。Qt5 マルチメディア ウィジェットのサンプル ディレクトリに簡単な例があります。参照できます。

于 2013-05-29T01:45:26.703 に答える
1

Qt バージョン 5 を使用している場合はQMediaPlayerを使用でき、バージョン 4 ではphononモジュールを使用できます (例を見てください。私の記憶が正しければ、単純なビデオ プレーヤーが含まれています)。

于 2013-05-28T08:58:08.060 に答える