metaData not working on Ubuntu Touch

Bug #1405766 reported by Szymon Waliczek
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
qtmultimedia-opensource-src-touch (Ubuntu)
New
Undecided
Unassigned

Bug Description

Ubuntu 14.10 (r12) on mako

metaData from live stream working fine on desktop but not working on Ubuntu Touch.
here is the code you can use to test it:

import QtQuick 2.0
import Ubuntu.Components 1.1
import QtMultimedia 5.0

MainView {
    objectName: "mainView"
    applicationName: "com.ubuntu.developer.majster-pl.audio-test"
    useDeprecatedToolbar: false
    width: units.gu(100)
    height: units.gu(75)

    Page {
        title: i18n.tr("metaData")

        Column {
            spacing: units.gu(1)
            anchors {
                margins: units.gu(2)
                fill: parent
            }

            Label {
                id: label
                objectName: "label"

                text: i18n.tr("Now playing:")
            }

            Label {
                id: label2

            }

            Button {
                objectName: "button"
                width: parent.width

                text: i18n.tr("Get metaData.title")

                onClicked: {
                    if(audioHub.metaData.title === undefined) {
                        label2.text = "click again"
                    } else {
                        label2.text = audioHub.metaData.title
                    }
                }
            }
        }
    }

    Audio {
        id: audioHub
        autoPlay: true
        source: "http://7659.live.streamtheworld.com:80/977_OLDIES_SC"
    }
}

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.