i, UT 84043
From: Lopes Yoann [yoann.lo...@digia.com]
Sent: Friday, January 17, 2014 4:14 AM
To: Jeff Lancaster
Cc: interest@qt-project.org
Subject: Re: [Interest] QML and video
On which platform are you? Embedded Linux using GStreamer as multimedia ba
Not directly answering your question Jeff, but anyway, I recommend looking
into using bc-cat on the SGX if possible.
http://processors.wiki.ti.com/index.php/OpenGLES_Texture_Streaming_-_bc-cat_User_Guide
You will have to write your own video render item for Qt Quick, because you
need a special te
On which platform are you? Embedded Linux using GStreamer as multimedia backend?
Yoann Lopes
Senior Software Engineer - Digia, Qt
Visit us on: http://qt.digia.com
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/lis
Using the follow sample qml code:
import QtQuick 2.0
import QtMultimedia 5.0
Rectangle {
width: 800
height: 600
color: "black"
MediaPlayer {
id: player
source: ""
autoPlay: true
}
VideoOutput {
id: videoOutput
source: player