I've a board with gstreamer hw accelerated provided from nvidia, I can launch video with the following command:
Code: Select all
gst-launch filesrc location=big_buck_bunny.mp4 ! qtdemux name=demux demux.video_00 ! decodebin ! nv_omx_videosink force-aspect-ratio=true demux.audio_00 ! nv_omx_aacdec ! alsasinkAnd I've succesfully compiled and installed QT5 (5.0.1) with QtMultimedia.
I'm writing now a very basic qml sample to test the video capabilities:
Code: Select all
...
Video {
id: video
width : parent.width
height : parent.height
source: "video.avi"
autoPlay: true
}
...Code: Select all
...
(helloworld:971): GStreamer-CRITICAL **: gst_object_ref: assertion `object != NULL' failed
omx_setup error while setting FilterTimestamp
Allocating new output: 1280x720 (x 12)
Error: "The autoaudiosink element is missing."Do you have some tips?
Thank you.