-
Notifications
You must be signed in to change notification settings - Fork 8
/
HTML-media-ja.html
12351 lines (11474 loc) · 375 KB
/
HTML-media-ja.html
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="ja"><head><meta charset="utf-8">
<title>HTML — media 要素(日本語訳)</title>
<link rel="stylesheet" href="common.css" type="text/css">
<link rel="stylesheet" href="common-whatwg.css" type="text/css">
<style>
@supports (grid-template-columns: subgrid) and (display: contents) {
#dom-TrackList-getKind-categories {
grid-template-columns: 10em 1fr 9em;
min-width: 30em;
max-width: 70em;
tr {
grid-template-areas:
"分類 定義 適"
"分類 例 例"
;
> *:nth-child(1) {
grid-area: 分類;
border-left-width: 0;
}
> *:nth-child(2) {
grid-area: 定義;
}
> *:nth-child(3) {
grid-area: 適;
}
> *:nth-child(4) {
grid-area: 例;
}
}
}
}
</style>
<script src="common0.js"></script>
<script src="common1.js" async></script>
<script>
Util.ready = function(){
const source_data = {
toc_main: 'MAIN',
generate: expand
};
Util.switchWordsInit(source_data);
}
function expand(){
const class_map = this.class_map;
const tag_map = this.tag_map;
const link_map = this.link_map;
return this.html.replace(
/%[\w\-~一-鿆あ-ん]+|`(.+?)([$@\^])(\w*)/g,
create_html
);
function create_html(match, key, indicator, klass){
if(!key) {//%
return `<var>${match.slice(1)}</var>`;
}
let href = '';
let href1 = '';
{
const n = key.indexOf('@');
if(n > 0) {
href1 = key.slice(n + 1);
key = key.slice(0, n);
}
}
let text = key;
switch(klass){
case 'r':
text = `[${key}]`;
href = `HTML-references.html#refs${key}`;
break;
case 'l':
text = `"<code class="literal">${text}</code>"`;
break;
case 'm': // IDL member
case 'mM':
case 'mA':
case 'mV':
case 'mS':
const n = text.indexOf('(');
if(n > 0){
key = text.slice(0, n);
text = key + text.slice(n).replace(/\w+/g, '<var>$&</var>');
}
break;
case 'tag': //
text = `<${text}>`;
break;
case 'sc': // url scheme
text = text.replace(/_/, ':');
break;
case 'U':
text = `U+${key}`;
break;
case 'AA':
return `<a href="~HTMLARIA#el-${key}">作者~向け</a>/<a href="~HTMLAAM#el-${key}">実装者~向け</a>`;
break;
case 'xCode':
return `<a id="_ex-html-${key}">*</a>`;
break;
case 'en':
return `<span lang="en">${key}</span>`;
break;
}
let tag = tag_map[klass];
if(tag) {
let classname = class_map[klass];
classname = classname ? ` class="${classname}"` : '';
text = `<${tag}${classname}>${text}</${tag}>`;
}
if(indicator !== '^'){
href = href1 || link_map[ klass ? `${klass}.${key}` : key ] || href;
if(!href){
console.log(match); // check error
return match;
}
switch(indicator){
case '$':
text = `<a href="${href}">${text}</a>`;
break;
case '@':
text = `<dfn id="${href.slice(1)}">${text}</dfn>`;
break;
}
}
return text;
}
}
</script>
<script type="text/plain" id="_source_data">
●●options
spec_date:2024-12-12
trans_update:2024-12-10
source_checked:240712
page_state_key:HTML
spec_status:LS
original_url:https://html.spec.whatwg.org/multipage/media.html
abbr_url:HEmedia
nav_prev:HEembed
nav_next:HEtrack
trans_1st_pub:2017-04-02
●●class_map
e:element
E:error
a:attr
aM:attr
aV:attr
aS:attr
et:event-type
sc:scheme
st:attr-state
hst:status
v:value
vT:value
jv:js-value
h:header
U:code-point
●●tag_map
I:code
m:code
mM:code
mA:code
mV:code
mE:code
E:code
c:code
e:code
a:code
aM:code
aV:code
aT:code
aS:code
et:code
mt:code
tag:code
st:i
hst:code
sc:code
h:code
sub:sub
U:span
v:code
vT:code
jv:code
i:i
em:em
cite:cite
●●words_table
●仕様
助ける:helpする:~
促す:encourageする:~
採用-:adopt:~
見当:idea:~
表向きは:ostensibleには:~
一様:uniform:~
診断用の:diagnosticな:~
逸脱:deviation:~
否定的:negative:~
架空の:fictionalな:~
積極的:aggressive:~
念頭:mind:~
妥協点:compromise:~
保守的:conservative:~
楽観的:optimistic:~
些細:negligible:~
柔軟:liberal:~
稀な:rare:~
選択的:selective:~
原則的:principle:~
適格:eligible:~
安定:stable:~
複雑な:complicatedな:~
満足する:satisfyする:満たす
流儀:fashion:~
概略的:brief:~
●仕様(他
必要:have to
~~働く:serve
~~損なう:interfere
~~直に:straight
あり得る/最〜/いずれか:possible
あり得る:potentially
~~指示
~~実際:indeed
~~抑制:allow 〜 to affect
当然ながら:naturally
見込まれる:will likely
伝える:inform する
~~最優先に put 〜 first
~~安定的な:consistent
~~緊密に:closely
確度:confidence/:how confident
十分な確度:confident of/:can be confidently established
~~相応に:very
例外的に:exception could be made
用語を通して/を通して:in terms of
何の利得もない:nothing would be gained
効き始める:kick-in
本当に:really
問われる:matter
そのことに関する:matter
にもかかわらず,:nonetheless
だいたいは:presumably
いつでも:ever
定か:sure
得る:potentially
であっても:to the contrary
方法
されるべき:ought
regardless
原因:why
極端な場合:in the extreme
兼ね合い:balance
~~適切と~~考えて:thinks is advisable
今更〜そうなっている:enshrine
高くつく:costly
面した:in the face of
選ぶ:choose
選び取る:pick
ではなく:as opposed to
最小~化:minimize
●network/navi
Content-Type:
^h:Range
DNS:
close:
sliding-window:sliding window::sliding 窓
load:
読込中:loading::読み込み中::ロード中
切断-:disconnect::~
接続性:connectivity::~
放送:broadcast:~
放送局:broadcaster:~
運んで:carryして:~
~URL資格証~利用:use-URL-credential
減速-:throttle::~
帯域幅:bandwidth::~
負荷:load::~
●構文
省略不可:omissibleでない:~
省略:omission:~
error含み:erroneous
前後~空白~
●内容
frame刻みの:frame-by-frame
分類:categories:~
透過的:transparent::~
句ng:phrasing::句::フレージング
可触:palpable::~
空内容:blank:~
代表:representative:~
●呈示
横:horizontal:~
縦:vertical:~
解像度:resolution::~
積層する:overlayする::重ねる
積層され:overlayされ::重ねられ
塗る:paintする:~
塗り:paint:~
描かれ:drawされ:~
合成-:synthesize::~
収まる:fitする:~
中央:center:~
開閉可能な:closed:~
縦横比:aspect ratio::~
縦横比:the ratio
生来:natural::~
黒:black:~
〜-可能:〜able
〜-済み:〜ed
●UI/対話
controller::::コントローラ
^en:scrubber
remote-control:remote control:::リモコン
全~screen:fullscreen
reader::::リーダ
screensaver::::スクリーンセーバ
utility::::ユーティリティ
選択-:select::~
選択:selection::~
未選択に:unselect:~
障害:disabilities:~
認知的:cognitive:~
聴覚
において,部分的または全部的に, 物理的または認知的な障害:the partially sighted, the blind, the hard-of-hearing, the deaf, and those with other physical or cognitive disabilities /the deaf or to those with other physical or cognitive disabilities
partially sighted
視覚:visual
視聴-:watch:~
視聴v:viewing:視聴
一過:transient::~
審美的:aesthetic:~
滑らか:smooth:~
知覚-:perceive:~
途切れる:gap
●media
GIF
JPEG
MJPEG
JPEG-push
TV
Ogg:
MP4:
live-event:live event:::ライブイベント
clip::::クリップ
radio::::ラジオ
poster::::ポスター
bitrate::::ビットレート
codec::::コーデック
rate::::レート
MediaError:
WebVTT:
streaming::::ストリーミング
track::::トラック
tT:text track:::テキストトラック
chapter::::チャプター
cue::::キュー
showing:
なし:none
動画が占めない部位: letterboxed or pillarboxed
音声転写:transcript::~
音述:audio description::~
音響:sound::~
最大音:loudest::~
聴感音量:loudness::~
無音:silent::~
無音:quietest
音量:volume::~
音高:pitch::~
消音-:mute::~::ミュート
消音されなく:unmute
低過ぎるか高過ぎる:so low or so high
発話:speech::~::スピーチ
混合-:mix::~
字幕:subtitle::~
手話:sign language:~
翻訳-:translate::~
実効:effective:~
映画:movie::~
提供元:provider::~
帯域内:in-band::~
接ぎ合-:patch
●範囲/timeline/再生/seek
Date:
UTC
時機:timing/when
時間長:duration::~
sample::::サンプル
終止-:end::~
重合して:overlapして::重なり合って
重合しな:overlapしな::重なり合わな
起点に:anchored at
日時:date&time::~
time-march-on:time march-on
時間同期的な:timed::時間に同期的な
~~時間:hours
時計:clock::~
瞬間:moment:~
増加-:increase:~
減少-:decrease:~
失効-:expire::~
早い:earlyな:早い
最も早い:earliest:
近似-:approximate:~
近似:approximation:~
過去:past:~
無限界:unbounded::~
有限界:bounded::~
触れて:touchして:~
wall:
区分:segment:~
進めた:advanceした:~
進める:advanceする:~
進めれ:advanceでき:~
seek:
seeking:::seek 処理
seek法:seeking
停滞-:stall::~
再生-:play::~
再生:playback::~
再生-中
再生待ち:pending play::~
逆方向:backwards::~
順方向:forwards::~
逆行-:reverse::~
早戻し:fast-rewind::~
早送り:fast-forward::~
自動再生:autoplay::~
静止-:pause::~
静止されなく:unpause
再開p:unpause::再開
単調:monotonic::~
地点:point:~
見積もり:estimate:~
見積もっ:estimateし:~
速度優先:approximate-for-speed:~
速度:speed:~
低速:slow:~
高速:fast:~
motion::::モーション
不連続:discontinuous:~
不連続に:discontinuous fashion
~~不連続に:non-linear fashion
~~集約:fold
10 月の金曜日の昼過ぎ:sunny Friday afternoon in October
真中:in the middle
音高を保全するよう調整-:pitch-preserving algorithms are used/in effect
速めたり遅める:speed up or slow down
合致しない:mismatch
●処理
looping::::ループ処理
buffering:::buffer 処理:バッファ処理
buffer中:buffering
detach:
制限時間:timeout::~
~timeout:
sniff:
活動:activity::~
遭遇-:encounter:~
復帰-:revert:~
~~飛:without passing through/:jump
待受ける:awaitする::待ち受ける
同期区間:synchronous section::~
事前条件:preconditions::~
致命的:fatal::~
能動的:active::~
準備状態:ready state::~
処理待ち:pending:~
〜待ちの:in-flight
忘れる:forgetする:~
候補:candidate:~
永続的:permanent::~
尽きた:exhaustした:~
尽きる:overtake
~~判明した:found by inspection to be
切替える:switchする:切り替える
切替えた:switchした:切り替えた
切替えて:switchして:切り替えて
切替わっ:switchされ:切り替わっ
ありに切り替え:turn on
満杯:full::~
発行-:issue:~
分岐:branch:~
続行-:proceed:~
増分的:incremental:~
遂げる:go through
%応答:res
%挿入される~node:insertedNode
%大域~obj:global
%~byte範囲:byteRange
%内部~応答:internalResponse
%前回の生成元:previousOrigin
%~mediaを更新する:updateMedia
%~media終了~時の処理n:processEndOfMedia
資源~全体^i:"entire resource"
終端まで^i:"until end"
結果:values
●§tracklist
role:
angle:
WebM:
DASH:
Role header field
Ogg
MPEG-2
AC3
BCP 47
歌:song:~
take:
外国語吹替え:foreign-language dubbed dialogues:外国語吹き替え
director:
実況:commentary:~
識別子:ID
自由形:free-form:~
焼付けら:burn inさ:焼き付けら
●§保安
intranet::::イントラネット
企業:corporation:~
企業内:corporate:~
新製品:new product:~
機密性:confidentiality:~
機密的:confidential:~
流れる:flowする:~
深刻:serious:~
脅威:threat:~
被害者:victim:~
視点:perspective:~
計画:plan:~
騙して:trickして:~
~~問題になり得る:potentially problematic
~~由来する:come from
抜け穴を~~呈する:present 〜 breach
●§最善な実施
key-frame:key-frame:::キーフレーム
plane:
set-top-box:set-top box:::セットトップボックス
携帯:mobile::~::モバイル
電話:phone::~
小さい:small
解放-:release::~
-:very
震え:choppy
仕事:job:~
可変:variable:~
品質:quality:~
平均:average:~
拙い:poorな:~
素材:material:~
作り込めば:work
良く
見れ:view
足る:sufficient:
~~活用:take
●未分類
落さず:dropせず:落とさず
確定的:definite:~
留めら:anchorさ:~
増大-:increase:~
覚えて:rememberして:~
破損-:corrupt:~
factory::::ファクトリ
tainted:
surround::::サラウンド
stereo::::ステレオ
公告-:announce:~
数-:numeric::~
白紙状態:scratch:~
広告:advertisement:~
線形:linear:~
種類:kind:~
小数:fraction:~
中間の:intermediate:~
一時的:temporal:~
近過去の:recentな:~
順不同:out-of-order:~
連結-:concatenate:~
blob:
孤立な:loneな:~
留めて:snap
正規化-済み:normalized
費や:spend
として:form
増やす:increase
変えないまま:leaving the other unchanged
見れる:view
絶え間なく~~更新され続ける:continuously increasing
~~復元
箇所:spot/
巨大:large
速やかに:promptly
面白いもの:surprising
最終的:eventual
利用量:usage
px:
-:cell
行:row
なし:missing
potentially
^en:anamorphic
^en:clean aperture
個数:number
数:number
実数:number
方法:how to
量:how much
単位
可能
落とさ
在して
狭い:scarce
直前に:has just
でなくなった/再生され始めた/もはや:no longer
一環/一部:part of
最も大きい:largest
より短くshorter
~~判明:learn
一式:set
同時:simultaneous
直近:latest
~instant
空に/ ~NULL に:clear
近くに:a nearby
重ねて:over
実:real
~~関係
則って
代えて:over
付番-:number
現:current/-
現時点:at the time the attribute is evaluated
現時点:at the time of getting
最~大:largest possible
最~大:greatest
前の:previous
同じく:As with
更には、furthermore
様々な:variety of
〜周りの near
most
旧:older
respective
もまた:again
毎回:each time
〜順に:subsequent
後で:subsequently
中途
部位
列目
同様
個以上
次第
時点
場合
上述
自体
一方
他方
同順
上限
一例
自身
個数
各種
結果
対応
●訳注
符号化処理
都合
ゴミ
円柱
レンズ
縦横
圧縮-
撮影-
●●words_table1
WEBVTT:https://w3c.github.io/webvtt/
errorM:error
errorS:error
codecs:<code class="production">codecs</code>
●●original_urls
the-source-element:https://html.spec.whatwg.org/multipage/embedded-content.html
●●original_id_map
the-video-element:video
the-audio-element:audio
●●mdn_urls
the-audio-element:HTML/Element/audio
the-video-element:HTML/Element/video
the-source-element:HTML/Element/source
audiotrack:API/AudioTrack
audiotracklist:API/AudioTrackList
canplaytyperesult:API/CanPlayTypeResult
htmlaudioelement:API/HTMLAudioElement
htmlmediaelement:API/HTMLMediaElement
htmlvideoelement:API/HTMLVideoElement
mediaerror:API/MediaError
mediaprovider:API/MediaProvider
timeranges:API/TimeRanges
trackevent:API/TrackEvent
trackeventinit:API/TrackEventInit
videotrack:API/VideoTrack
videotracklist:API/VideoTrackList
event-source-error:API/HTMLSourceElement/error
event-media-error:Events/error
event-error:Events/error
event-media-abort:API/HTMLMediaElement/abort_event
event-media-addtrack:API/VideoTrackList/addtrack_event
event-media-addtrack:API/AudioTrackList/addtrack_event
event-media-addtrack:API/TextTrackList/addtrack_event
event-media-canplay:API/HTMLMediaElement/canplay_event
event-media-canplaythrough:API/HTMLMediaElement/canplaythrough_event
event-media-change:API/VideoTrackList/change_event
event-media-durationchange:API/HTMLMediaElement/durationchange_event
event-media-emptied:API/HTMLMediaElement/emptied_event
event-media-ended:API/HTMLMediaElement/ended_event
event-media-loadeddata:API/HTMLMediaElement/loadeddata_event
event-media-loadedmetadata:API/HTMLMediaElement/loadedmetadata_event
event-media-loadstart:API/HTMLMediaElement/loadstart_event
event-media-pause:API/HTMLMediaElement/pause_event
event-media-play:API/HTMLMediaElement/play_event
event-media-playing:API/HTMLMediaElement/playing_event
event-media-progress:API/HTMLMediaElement/progress_event
event-media-ratechange:API/HTMLMediaElement/ratechange_event
event-media-removetrack:API/VideoTrackList/removetrack_event
event-media-addtrack:API/AudioTrackList/removetrack_event
event-media-addtrack:API/TextTrackList/removetrack_event
event-media-resize:API/?/resize_event
event-media-seeked:API/HTMLMediaElement/seeked_event
event-media-seeking:API/HTMLMediaElement/seeking_event
event-media-stalled:API/HTMLMediaElement/stalled_event
event-media-suspend:API/HTMLMediaElement/suspend_event
event-media-timeupdate:API/HTMLMediaElement/timeupdate_event
event-media-volumechange:API/HTMLMediaElement/volumechange_event
event-media-waiting:API/HTMLMediaElement/waiting_event
●●link_map
●IDL
LegacyFactoryFunction:~WEBIDLjs#LegacyFactoryFunction
CEReactions:~HEcustom#cereactions
HTMLConstructor:~HTMLdom#htmlconstructor
Promise:~WEBIDL#idl-promise
object:~WEBIDL#idl-object
E.AbortError:~WEBIDL#aborterror
E.IndexSizeError:~WEBIDL#indexsizeerror
E.InvalidStateError:~WEBIDL#invalidstateerror
E.NotAllowedError:~WEBIDL#notallowederror
E.NotFoundError:~WEBIDL#notfounderror
E.NotSupportedError:~WEBIDL#notsupportederror
I.Document:~HTMLdom#document
I.HTMLVideoElement:#htmlvideoelement
I.HTMLAudioElement:#htmlaudioelement
I.HTMLMediaElement:#htmlmediaelement
I.HTMLElement:~HTMLdom#htmlelement
I.CanPlayTypeResult:#canplaytyperesult
I.Blob:~FILEAPI#blob
I.DOMException:~WEBIDL#idl-DOMException
I.Date:~TC39#sec-date-objects
I.Event:~DOM4#interface-event
I.EventHandler:~WAPI#eventhandler
I.EventInit:~DOM4#dictdef-eventinit
I.EventTarget:~DOM4#interface-eventtarget
I.TrackEvent:#trackevent
I.TrackEventInit:#trackeventinit
I.File:~FILEAPI#file
I.MediaError:#mediaerror
I.MediaProvider:#mediaprovider
I.MediaSource:https://w3c.github.io/media-source/#idl-def-mediasource
I.MediaStream:https://w3c.github.io/mediacapture-main/getusermedia.html#idl-def-mediastream
I.AudioTrackList:#audiotracklist
I.AudioTrack:#audiotrack
I.VideoTrackList:#videotracklist
I.VideoTrack:#videotrack
I.TextTrack:~HEtrack#texttrack
I.TextTrackList:~HEtrack#texttracklist
I.TextTrackKind:~HEtrack#texttrackkind
I.TimeRanges:#timeranges
mE.MEDIA_ERR_ABORTED:#dom-mediaerror-media_err_aborted
mE.MEDIA_ERR_DECODE:#dom-mediaerror-media_err_decode
mE.MEDIA_ERR_NETWORK:#dom-mediaerror-media_err_network
mE.MEDIA_ERR_SRC_NOT_SUPPORTED:#dom-mediaerror-media_err_src_not_supported
mE.code:#dom-mediaerror-code
mE.message:#dom-mediaerror-message
cP.空~文字列:#dom-canplaytyperesult-nil
l.maybe:#dom-canplaytyperesult-maybe
l.probably:#dom-canplaytyperesult-probably
m.src:#dom-source-src
m.Audio:#dom-audio
m.track:#dom-trackevent-track
m.createElement:~DOM4#dom-document-createelement
m.width:~HEembed#dom-dim-width
m.height:~HEembed#dom-dim-height
m.length:#dom-timeranges-length
m.end:#dom-timeranges-end
m.start:#dom-timeranges-start
m.onchange:#handler-tracklist-onchange
m.onaddtrack:#handler-tracklist-onaddtrack
m.onremovetrack:#handler-tracklist-onremovetrack
m.getter:#dom-tracklist-item
mM.HAVE_CURRENT_DATA:#dom-media-have_current_data
mM.HAVE_ENOUGH_DATA:#dom-media-have_enough_data
mM.HAVE_FUTURE_DATA:#dom-media-have_future_data
mM.HAVE_METADATA:#dom-media-have_metadata
mM.HAVE_NOTHING:#dom-media-have_nothing
mM.NETWORK_EMPTY:#dom-media-network_empty
mM.NETWORK_IDLE:#dom-media-network_idle
mM.NETWORK_LOADING:#dom-media-network_loading
mM.NETWORK_NO_SOURCE:#dom-media-network_no_source
mM.canPlayType:#dom-navigator-canplaytype
mM.addTextTrack:~HEtrack#dom-media-addtexttrack
mM.audioTracks:#dom-media-audiotracks
mM.autoplay:#dom-media-autoplay
mM.buffered:#dom-media-buffered
mM.controls:#dom-media-controls
mM.crossOrigin:#dom-media-crossorigin
mM.currentSrc:#dom-media-currentsrc
mM.currentTime:#dom-media-currenttime
mM.defaultMuted:#dom-media-defaultmuted
mM.defaultPlaybackRate:#dom-media-defaultplaybackrate
mM.duration:#dom-media-duration
mM.ended:#dom-media-ended
mM.error:#dom-media-error
mM.fastSeek:#dom-media-fastseek
mM.getStartDate:#dom-media-getstartdate
mM.load:#dom-media-load
mM.loop:#dom-media-loop
mM.muted:#dom-media-muted
mM.networkState:#dom-media-networkstate
mM.pause:#dom-media-pause
mM.paused:#dom-media-paused
mM.play:#dom-media-play
mM.playbackRate:#dom-media-playbackrate
mM.played:#dom-media-played
mM.preload:#dom-media-preload
mM.preservesPitch:#dom-media-preservespitch
mM.readyState:#dom-media-readystate
mM.seekable:#dom-media-seekable
mM.seeking:#dom-media-seeking
mM.src:#dom-media-src
mM.srcObject:#dom-media-srcobject
mM.textTracks:~HEtrack#dom-media-texttracks
mM.videoTracks:#dom-media-videotracks
mM.volume:#dom-media-volume
mV.playsInline:#dom-video-playsinline
mV.poster:#dom-video-poster
mV.videoHeight:#dom-video-videoheight
mV.videoWidth:#dom-video-videowidth
mV.getTrackById:#dom-videotracklist-gettrackbyid
mV.length:#dom-videotracklist-length
mV.selectedIndex:#dom-videotracklist-selectedindex
mV.id:#dom-videotrack-id
mV.kind:#dom-videotrack-kind
mV.label:#dom-videotrack-label
mV.language:#dom-videotrack-language
mV.selected:#dom-videotrack-selected
mA.getTrackById:#dom-audiotracklist-gettrackbyid
mA.length:#dom-audiotracklist-length
mA.enabled:#dom-audiotrack-enabled
mA.id:#dom-audiotrack-id
mA.kind:#dom-audiotrack-kind
mA.label:#dom-audiotrack-label
mA.language:#dom-audiotrack-language
et.error:~HTMLindex#event-error
et.~errorM:#event-media-error
et.~errorS:#event-source-error
et.abort:#event-media-abort
et.addtrack:#event-media-addtrack
et.canplay:#event-media-canplay
et.canplaythrough:#event-media-canplaythrough
et.change:#event-media-change
et.durationchange:#event-media-durationchange
et.emptied:#event-media-emptied
et.ended:#event-media-ended
et.loadeddata:#event-media-loadeddata
et.loadedmetadata:#event-media-loadedmetadata
et.loadstart:#event-media-loadstart
et.mousedown:~UIEVENTS#event-type-mousedown
et.pause:#event-media-pause
et.play:#event-media-play
et.playing:#event-media-playing
et.progress:#event-media-progress
et.ratechange:#event-media-ratechange
et.removetrack:#event-media-removetrack
et.resize:#event-media-resize
et.seeked:#event-media-seeked
et.seeking:#event-media-seeking
et.stalled:#event-media-stalled
et.suspend:#event-media-suspend
et.timeupdate:#event-media-timeupdate
et.volumechange:#event-media-volumechange
et.waiting:#event-media-waiting
●要素
e.audio:#the-audio-element
e.base:~HEmetadata#the-base-element
e.canvas:~HEcanvas#the-canvas-element
e.img:~HEimages#the-img-element
e.picture:~HEimages#the-picture-element
e.source:#the-source-element
e.source:~HEimages#the-source-element
e.track:~HEtrack#the-track-element
e.video:#the-video-element
a.id:~HTMLdom#the-id-attribute
a.itemprop:~HTMLLS/microdata.html#names:-the-itemprop-attribute