QMediaResource¶
- PyQt5.QtMultimedia.QMediaResource
Description¶
The QMediaResource class provides a description of a media resource.
A media resource is composed of a url() containing the location of the resource and a set of properties that describe the format of the resource. The properties provide a means to assess a resource without first attempting to load it, and in situations where media be represented by multiple alternative representations provide a means to select the appropriate resource.
Media made available by a remote services can often be available in multiple encodings or quality levels, this allows a client to select an appropriate resource based on considerations such as codecs supported, network bandwidth, and display constraints. QMediaResource includes information such as the mimeType(), audioCodec() and videoCodec() codecs, audioBitRate() and videoBitRate() bit rates, and resolution() so these constraints and others can be evaluated.
The only mandatory property of a QMediaResource is the url().
See also
Methods¶
- __init__()
Constructs a null media resource.
- __init__(QMediaResource)
Constructs a copy of a media resource other.
- __init__(QUrl, mimeType: str = '')
Constructs a media resource with the given mimeType from a url.
- __init__(QNetworkRequest, mimeType: str = '')
Constructs a media resource with the given mimeType from a network request.
- audioBitRate() → int
Returns the bit rate in bits per second of a media resource’s audio stream.
This may be zero if the bit rate is unknown, or the resource contains no audio stream.
See also
- audioCodec() → str
Returns the audio codec of a media resource.
This may be null if the media resource does not contain an audio stream, or the codec is unknown.
See also
- channelCount() → int
Returns the number of audio channels in a media resource.
This may be zero if the sample size is unknown, or the resource contains no audio stream.
See also
- dataSize() → int
Returns the size in bytes of a media resource.
This may be zero if the size is unknown.
See also
- __eq__(QMediaResource) → bool
TODO
- isNull() → bool
Identifies if a media resource is null.
Returns true if the resource is null, and false otherwise.
- language() → str
Returns the language of a media resource as an ISO 639-2 code.
This may be null if the language is unknown.
See also
- mimeType() → str
Returns the MIME type of a media resource.
This may be null if the MIME type is unknown.
- __ne__(QMediaResource) → bool
TODO
- request() → QNetworkRequest
Returns the network request associated with this media resource.
- resolution() → QSize
Returns the resolution in pixels of a media resource.
This may be null is the resolution is unknown, or the resource contains no pixel data (i.e. the resource is an audio stream.
See also
- sampleRate() → int
Returns the audio sample rate of a media resource.
This may be zero if the sample size is unknown, or the resource contains no audio stream.
See also
- setAudioBitRate(int)
Sets the bit rate in bits per second of a media resource’s video stream.
See also
- setAudioCodec(str)
Sets the audio codec of a media resource.
See also
- setChannelCount(int)
Sets the number of audio channels in a media resource.
See also
- setDataSize(int)
Sets the size in bytes of a media resource.
See also
- setLanguage(str)
Sets the language of a media resource.
See also
- setResolution(QSize)
Sets the resolution in pixels of a media resource.
See also
- setResolution(int, int)
Sets the width and height in pixels of a media resource.
- setSampleRate(int)
Sets the audio sampleRate of a media resource.
See also
- setVideoBitRate(int)
Sets the bit rate in bits per second of a media resource’s video stream.
See also
- setVideoCodec(str)
Sets the video codec of media resource.
See also
- url() → QUrl
Returns the URL of a media resource.
- videoBitRate() → int
Returns the bit rate in bits per second of a media resource’s video stream.
This may be zero if the bit rate is unknown, or the resource contains no video stream.
See also
- videoCodec() → str
Returns the video codec of a media resource.
This may be null if the media resource does not contain a video stream, or the codec is unknonwn.
See also