用於展示指定視頻的方便類型。 更多...
| import 語句: | import QtMultimedia 5.15 |
| 繼承: |
視頻
is a convenience type combining the functionality of a
MediaPlayer
和
VideoOutput
into one. It provides simple video playback functionality without having to declare multiple types.
Video { id: video width : 800 height : 600 source: "video.avi" MouseArea { anchors.fill: parent onClicked: { video.play() } } focus: true Keys.onSpacePressed: video.playbackState == MediaPlayer.PlayingState ? video.pause() : video.play() Keys.onLeftPressed: video.seek(video.position - 5000) Keys.onRightPressed: video.seek(video.position + 5000) }
視頻
supports untransformed, stretched, and uniformly scaled video presentation. For a description of stretched uniformly scaled presentation, see the
fillMode
property description.
另請參閱 MediaPlayer and VideoOutput .
|
audioRole : enumeration |
This property holds the role of the audio stream. It can be set to specify the type of audio being played, allowing the system to make appropriate decisions when it comes to volume, routing or post-processing.
The audio role must be set before setting the source property.
可以檢索支持的值,采用 supportedAudioRoles() .
值可以是之一:
customAudioRole is cleared when this property is set to anything other than CustomRole.
該特性在 Qt 5.6 引入。
|
autoLoad : bool |
This property indicates if loading of media should begin immediately.
Defaults to true, if false media will not be loaded until playback is started.
|
autoPlay : bool |
This property determines whether the media should begin playback automatically.
Setting to
true
also sets
autoLoad
to
true
。默認為
false
.
|
availability : enumeration |
Returns the availability state of the video instance.
This is one of:
| 值 | 描述 |
|---|---|
| MediaPlayer .Available | The video player is available to use. |
| MediaPlayer .Busy | The video player is usually available, but some other process is utilizing the hardware necessary to play media. |
| MediaPlayer .Unavailable | There are no supported video playback facilities. |
| MediaPlayer .ResourceMissing | There is one or more resources missing, so the video player cannot be used. It may be possible to try again at a later time. |
|
bufferProgress : real |
This property holds how much of the data buffer is currently filled, from 0.0 (empty) to 1.0 (full).
|
customAudioRole : string |
This property holds the role of the audio stream when the backend supports audio roles unknown to Qt. It can be set to specify the type of audio being played, allowing the system to make appropriate decisions when it comes to volume, routing or post-processing.
The audio role must be set before setting the source property.
audioRole is set to CustomRole when this property is set.
該特性在 Qt 5.11 引入。
|
duration : int |
This property holds the duration of the media in milliseconds.
If the media doesn't have a fixed duration (a live stream for example) this will be 0.
|
error : enumeration |
This property holds the error state of the video. It can be one of:
|
errorString : string |
This property holds a string describing the current error condition in more detail.
|
fillMode : enumeration |
Set this property to define how the video is scaled to fit the target area.
Because this type is for convenience in QML, it does not support enumerations directly, so enumerations from
VideoOutput
are used to access the available fill modes.
The default fill mode is preserveAspectFit.
|
flushMode : enumeration |
Set this property to define what
視頻
should show when playback is finished or stopped.
The default flush mode is EmptyFrame.
該特性在 Qt 5.15 引入。
|
hasAudio : bool |
This property holds whether the current media has audio content.
|
hasVideo : bool |
This property holds whether the current media has video content.
|
loops : int |
This property holds the number of times the media is played. A value of
0
or
1
means the media will be played only once; set to
MediaPlayer.Infinite
以啓用無限循環。
The value can be changed while the media is playing, in which case it will update the remaining loops to the new value.
默認為
1
.
該特性在 Qt 5.9 引入。
This property holds the meta data for the current media.
見 MediaPlayer.metaData for details about each meta data key.
另請參閱 QMediaMetaData .
|
muted : bool |
此特性保持音頻輸齣是否靜音。
|
notifyInterval : int |
The interval at which notifiable properties will update.
須申報特性是 position and bufferProgress .
The interval is expressed in milliseconds, the default value is 1000.
該特性在 Qt 5.9 引入。
|
orientation : int |
The orientation of the
視頻
in degrees. Only multiples of 90 degrees is supported, that is 0, 90, 180, 270, 360, etc.
|
playbackRate : real |
This property holds the rate at which video is played at as a multiple of the normal rate.
|
playbackState : enumeration |
This read only property indicates the playback state of the media.
The default state is MediaPlayer .StoppedState.
|
playlist : Playlist |
此特性保持用於媒體播放器的播放列錶。
設置播放列錶特性重置 source 成空字符串。
該特性在 Qt 5.6 引入。
|
position : int |
此特性保持當前的迴放位置 (以毫秒為單位)。
要改變此位置,使用 seek() 方法。
另請參閱 seek() .
|
seekable : bool |
This property holds whether the playback position of the video can be changed.
若 true,調用 seek() method will cause playback to seek to the new position.
|
source : url |
此特性保持媒體的源 URL (統一資源定位符)。
Setting the source property clears the current playlist ,若有的話。
|
status : enumeration |
This property holds the status of media loading. It can be one of:
|
volume : real |
此特性保持音頻音量。
按綫性比例縮放的音量是從
0.0
(無聲) 到
1.0
(全音量)。將鉗製超齣此範圍的值。
默認音量為
1.0
.
通常,UI 音量控件應按非綫性比例縮放。例如,使用對數比例縮放將産生感知響度的綫性變化,這通常是用戶期望的音量控製。見 QtMultimedia.convertVolume() 瞭解更多細節。
此信號發射,當暫停迴放時。
相應處理程序是
onPaused
.
注意:
相應處理程序是
onPaused
.
This signal is emitted when playback is started or continued.
相應處理程序是
onPlaying
.
注意:
相應處理程序是
onPlaying
.
此信號發射,當停止迴放時。
相應處理程序是
onStopped
.
注意:
相應處理程序是
onStopped
.
暫停媒體迴放。
開始媒體迴放。
若 seekable property is true, seeks the current playback position to offset .
Seeking may be asynchronous, so the position property may not be updated immediately.
停止媒體迴放。
返迴支持的音頻角色列錶。
若不支持設置的音頻角色,返迴空列錶。
該方法在 Qt 5.6 引入。
另請參閱 audioRole .