aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/videoplaybackquality/index.html
blob: cc06b72f65a87e2e642db6c8d52903b0336625b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
title: VideoPlaybackQuality
slug: Web/API/VideoPlaybackQuality
translation_of: Web/API/VideoPlaybackQuality
---
<p>{{APIRef("Media Source Extensions")}}{{SeeCompatTable}}</p>

<p><code><strong>VideoPlaybackQuality</strong></code> 对象表示了一系列描述视频播放质量的指标。</p>

<p>可以通过 {{domxref("HTMLVideoElement.getVideoPlaybackQuality()")}} 创建一个实例。</p>

<h2 id="属性">属性</h2>

<p><em><code>VideoPlaybackQuality</code> 对象不继承任何属性。</em></p>

<dl>
 <dt>{{domxref("VideoPlaybackQuality.creationTime")}} {{readonlyInline}}</dt>
 <dd>一个用毫秒表示从开始页面浏览到对象创建的 {{domxref("DOMHighResTimeStamp")}} 对象。</dd>
 <dt>{{domxref("VideoPlaybackQuality.totalVideoFrames")}} {{readonlyInline}}</dt>
 <dd>一个表示相关联的 {{domxref("HTMLVideoElement")}} 自从创建起的已创建和丢弃帧数数量总和的 unsigned long 值。.</dd>
 <dt>{{domxref("VideoPlaybackQuality.droppedVideoFrames")}} {{readonlyInline}}</dt>
 <dd>一个表示相关联的 {{domxref("HTMLVideoElement")}} 自从创建起的已丢弃帧数数量的 <code>unsigned long</code> 值。</dd>
 <dt>{{domxref("VideoPlaybackQuality.corruptedVideoFrames")}} {{readonlyInline}}</dt>
 <dd>一个表示相关联的 {{domxref("HTMLVideoElement")}} 自从创建起的损坏帧数数量的 <code>unsigned long</code> 值。一个损坏帧可能属于创建帧或丢弃帧。</dd>
 <dt>{{domxref("VideoPlaybackQuality.totalFrameDelay")}} {{readonlyInline}} {{ obsolete_inline(30) }}</dt>
 <dd>一个表示相关联的 {{domxref("HTMLVideoElement")}} 自从创建起的帧延迟总和的 double 值。帧延迟是指一个帧的理论展示时间与实际显示时间的差值。</dd>
</dl>

<h2 id="方法">方法</h2>

<p><em><code>VideoPlaybackQuality</code> 对象没有实现任何特定方法,也没有继承任何方法。</em></p>

<h2 id="规范">规范</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">规范</th>
   <th scope="col">状态</th>
   <th scope="col">注释</th>
  </tr>
  <tr>
   <td>{{SpecName('Media Source Extensions', '#videoplaybackquality', 'VideoPlaybackQuality')}}</td>
   <td>{{Spec2('Media Source Extensions')}}</td>
   <td>最初定义</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

{{Compat("api.VideoPlaybackQuality")}}

<h2 id="另见">另见</h2>

<ul>
 <li>The {{domxref("HTMLVideoElement.getVideoPlaybackQuality()")}} method for constructing and returning this interface.</li>
 <li>{{domxref("MediaSource")}}</li>
 <li>{{domxref("SourceBuffer")}}</li>
</ul>