IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

RadioData QML Type

Access RDS data from a QML application.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

RadioData QML Type

  • Import Statement: import QtMultimedia 5.12

  • Inherits: Item

  • Group: RadioData is part of multimedia_qml, multimedia_radio_qml

Detailed Description

RadioData is your gateway to all the data available through RDS. RDS is the Radio Data System which allows radio stations to broadcast information like the stationId, programType, programTypeName, stationName, and radioText. This information can be read from the RadioData. It also allows you to set whether the radio should tune to alternative frequencies if the current signal strength falls too much.

 
Sélectionnez
Rectangle {
    width: 480
    height: 320

    Radio {
        id: radio
        band: Radio.FM
    }

    Column {
        Text {
            text: radio.radioData.stationName
        }

        Text {
            text: radio.radioData.programTypeName
        }

        Text {
            text: radio.radioData.radioText
        }
    }
}

You use RadioData together with a Radio, either by accessing the radioData property of the Radio, or creating a separate RadioData. The properties of the RadioData type will reflect the information broadcast by the radio station the Radio is currently tuned to.

See Also

See also Radio Overview

Property Documentation

 

alternativeFrequenciesEnabled : bool

This property allows you to specify whether the radio should try and tune to alternative frequencies if the signal strength of the current station becomes too weak. The alternative frequencies are emitted over RDS by the radio station, and the tuning happens automatically.

[read-only] availability : enumeration

Returns the availability state of the radio data interface.

This is one of:

Value

Description

Available

The radio data interface is available to use

Busy

The radio data interface is usually available to use, but is currently busy.

Unavailable

The radio data interface is not available to use (there may be no radio hardware)

ResourceMissing

There is one or more resources missing, so the radio cannot be used. It may be possible to try again at a later time.

[read-only] programType : enumeration

This property holds the type of the currently playing program as transmitted by the radio station. The value can be any one of the values defined in the table below.

Value

Undefined

News

CurrentAffairs

Information

Sport

Education

Drama

Culture

Science

Varied

PopMusic

RockMusic

EasyListening

LightClassical

SeriousClassical

OtherMusic

Weather

Finance

ChildrensProgrammes

SocialAffairs

Religion

PhoneIn

Travel

Leisure

JazzMusic

CountryMusic

NationalMusic

OldiesMusic

FolkMusic

Documentary

AlarmTest

Alarm

Talk

ClassicRock

AdultHits

SoftRock

Top40

Soft

Nostalgia

Classical

RhythmAndBlues

SoftRhythmAndBlues

Language

ReligiousMusic

ReligiousTalk

Personality

Public

College

[read-only] programTypeName : string

This property holds a string representation of the programType.

[read-only] radioText : string

This property holds free-text transmitted by the radio station. This is typically used to show supporting information for the currently playing content, for instance song title or artist name.

[read-only] stationId : string

This property allows you to read the station Id of the currently tuned radio station.

[read-only] stationName : string

This property has the name of the currently tuned radio station.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+