-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideojs-ext.min.js
4685 lines (4676 loc) · 344 KB
/
videojs-ext.min.js
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
var _0x425094 = _0x103f;
function _0x5b04() {
var _0x221c70 = ['55%', 'rightAnswerNum', '<div\x20class=\x22comment_box\x22\x20style=\x22display:block\x22>', 'hasOwnProperty', 'seekend', 'div.ans-vjserrdisplay-title', '.video-js\x20.vjs-paused\x20.vjs-icon-placeholder', '.vjs-screen-more', '<div\x20class=\x22tkItem\x22>', 'createVideoTask函数不存在!', 'controlBar', 'pause', 'getNewGuid', 'getAt', 'PPT', '&rt=', '<div\x20class=\x22comment_icon\x22><img\x20src=\x22/ananas/modules/video/pz_icon.png\x22/></div>', '<a\x20class=\x22jb_btn\x20jb_btn_92\x20fs14\x20sp_video_pic_dele2\x22\x20style=\x22position:absolute;bottom:14px;right:20px;z-index:6;\x22\x20href=\x22javascript:\x22>', ';\x20path=', 'srcElement', 'location', '&otherInfo=', '.moreSettings', '<span\x20aria-hidden=\x22true\x22\x20class=\x22vjs-icon-placeholder\x22></span><span\x20class=\x22vjs-control-text\x22\x20aria-live=\x22polite\x22>快进</span>', '同步学习数据失败,错误码:', '&cpi=', 'swithOn', '<div\x20class=\x22comment_tit\x22><a\x20href=\x22javascript:;\x22\x20class=\x22stow_icon\x20fr\x22><img\x20src=\x22/ananas/modules/video/stow_icon.png\x22\x20/></a><p\x20class=\x22fl\x22>[', 'showing', 'windowOpacity', 'customSourcePicker', 'delAnalysisEl', 'video/mp4', 'ans-vjserrdisplay', 'ignorePause', 'getDanmuList', '\x27\x20class=\x27vjs-sub-item', 'model', 'tkParsing', 'request', '0px', 'sHigh', 'dom', 'concat', '\x20<i\x20id=\x22rightNum\x22></i>\x20', 'answerR', '.vjs_font_color\x20li', '&playingTime=', 'subtitleUrl', 'getCookieVal', '.channel', 'cuechange', 'resize', 'empty', '&courseid=', '-13px', 'zsCloud_up', 'format', 'chapterVideoTranslate', 'commentOpenEl', 'showJobLimitTip', 'String', 'currentTime', 'MenuItem', '.vjs_sub_fontfamily\x20p', '</a></li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22proportionalSerif\x22\x20p_txt=\x22', 'items', 'isPass', '<div\x20class=\x22tkTopic\x22>', '.dragCircle', '<span\x20class=\x22spanNotBack\x20fr\x22\x20id=\x22spanNotBack\x22><tpl\x20if=\x22dtype==\x27InteractiveQuiz\x27\x22>', '<a\x20class=\x22tkParsing_dele\x22\x20id=\x22tkParsingDele\x22\x20href=\x22javascript:\x22></a>', 'remove', 'moreSettingsShow', 'query', '#tipDiv\x20.toolTipBox1', 'end', 'edgeStyle', 'SeekBar', 'ans.videojs.VideoQuiz', 'click', '.rightbox', 'textColr', 'playVideoScreen', 'children', '0123456789abcdef', '\x22\x20data-marker-time=\x22', 'spanHas', 'overflow', 'addChild', 'div.tkParsing_screll', '</span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22rightbox\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22selectBox\x20vjs_font_color\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<p>', 'Microsoft\x20YaHei', 'teacherstudy', 'dragCircle', 'Quality', '70%', 'current', '.dragBx', 'doublespeed', '.vjs-playback-rate\x20.vjs-menu\x20.vjs-menu-content\x20li', 'description', '.vjs_view_color\x20li', 'keepGood', '.vjs-control-bar', '?clazzId=', 'tkParsingDele', '.bgTran', 'control', 'low', '100%', '.vjs_sub_fontfamily\x20li', 'slideUp', 'MenuButton', '&_t=', '.formTopic', 'getBox', 'body', 'window', 'callbackfn', 'aplusVideoId', 'sp_size_small', 'parent', 'ans.videojs.VideoAnnotation', '<span>', '</div>', 'reportTimeInterval', '.viewBlue', '&schoolId=', 'changePan', '.zmdragFont', '\x22></span><span\x20class=\x22vjs-screen-more\x22\x20title=\x22', 'enableFastForward', '<div\x20class=\x22tkTopic_title\x22><tpl\x20if=\x22questionType==\x27多选题\x27\x22>', 'position', 'SmallCaps', '20FbpWAS', '&', 'httpmd', 'each', '</span></div><ul\x20class=\x22video_line\x20video_resolution\x22>', 'ignoreSeek', 'DomHelper', 'percent', 'backEl', ';\x20domain=', 'toElement', 'ignorePlay', 'forEach', '/richvideo/allsubtitle?mid=', 'vjs_view_color', 'btnDivEl', 'vjs-setting-button-label', 'vjs_bgc', 'customIframe', 'one', '<input\x20type=\x22radio\x22\x20name=\x22ans-vjserrdisplay-opt\x22\x20{[xindex-1\x20===\x20parent.selectedIndex\x20?\x20\x22checked\x20disabled\x22:\x22\x22]}>', 'KnowledgePoint', '.vjs-self-setting', 'createElement', ']</p></div>', '&view=pc', 'mergeOptions', 'getGroupedSrc', 'customIframePlugin', 'bigPlayButton', 'setValues', '</span></tpl>', 'ans.VideoJs', 'vjs-fast-replay-button', 'eventInterval', 'updateDisplay', 'playlineDefault', 'a.continueLearn', 'continue', 'hide', '8px', 'enable', 'disable', 'OTHER', '</span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22resetBtn\x22>', 'var\x20data=', 'insertBefore', 'ans.videojs.CustomIframe', '.selectBox\x20ul', 'MonospaceSans-Serif', 'touchend', 'disabled', 'hasJobLimit', '.video-js\x20.vjs-play-control.vjs-playing\x20.vjs-icon-placeholder', 'scroller', '.vjs-resolution-button', 'inline-block', 'vjs_advanced_setting', 'join', '<tpl\x20if=\x22dtype==\x27InteractiveQuiz\x27\x22>', '649SZrLAu', 'timeArray', 'isFullscreen', '.comment_con', 'textTrackDisplay', 'allowNextVideo', 'quizErrorReportUrl', 'load', 'sources', '<i></i>', 'playNextVideo', 'White', '.zsCloud_body', 'hasCls', '.fastBox', 'fontPercent', 'deleteTemporaryEvent', 'res', 'subobjectid', 'seekLog', 'getElementsByClassName', 'span', 'QUIZ', 'constructor', 'title', 'thumb', 'openScreen', 'seekVideoTime', '.fontBule', '公网2', 'ans.videojs.customIframeV2', '</li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22uniform\x22>', '</a></li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09</ul>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22itemLineBx\x20marTop12\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22leftFontWid\x22>', 'enableSwitchWindow', 'mid', 'corretTip3', 'plugin', 'videoquiz-continue', 'outPagePop', 'tipFun', 'errorMustBack', 'lastHeartbeat', '</ul>', 'isSendLog_', 'maxWidth', 'addEventListener', 'ans-videoannotation', 'xhr', 'viewHeart', '#hot_map_main', 'Ext.Component', 'canDragSeekBar', '/question/quiz-rightcount?classid=', '\x22\x20class=\x22active\x22><a\x20href=\x22javascript:void(0)\x22>', 'fastForward', 'addEvents', 'Depressed', 'jQCloud', '</a></li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22#FF0\x22\x20p_txt=\x22', 'vjs-icon-next-item\x20vjs-fast-forward-button\x20vjs-control\x20vjs-button', 'sort', 'getValues', 'vjs-vol-0', 'mousemove', 'setStyle', 'registerComponent', 'a.spanHref', 'firstPlay', 'playingLoopCapture', 'resolutionDefault', '[{0}][{1}][{2}][{3}][{4}][{5}][{6}][{7}]', ':not(.markertime)', 'vjs-selected', 'active', 'singleton', 'InteractiveQuiz', 'Fullscreen', 'after', 'studyControl', 'resourceId', 'player_', 'techName_', 'temporaryEvent', 'http', 'time_shift_click', 'toggleCls', 'renderTo', 'p_txt', 'zh-CN', 'high', 'top', 'width', 'ready', '\x22><a\x20href=\x22javascript:void(0)\x22>', 'vjs_base_setting', 'closeIframe', 'a.ans-videoquiz-submit', 'currentTimeDisplay', '</tpl></div>', 'random', 'playbackRate', '.vjs_base_setting', '</a></li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22monospaceSerif\x22\x20p_txt=\x22', 'subtitles', 'userid', 'NaN', '/ananas/video-editor/sub?objectid=', '.moduleUlResolution\x20li', 'color', '/castscreen/teacherstudy', 'floor', 'sliderinactive', 'CLK', 'showVideoTimeLimitTip', '.zimuBx', 'sourcePlayer', 'ans.videojs.customIframe', 'aplusResourceName', '.vjs-text-track-display>div>div>div', '100px', '<img\x20src=\x22{src}\x22\x20class=\x22sp_video_img\x22\x20/>', 'vjs-hidden', 'fill', 'addCls', '</span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22zmSwitch\x20swithOn\x22></div>\x0a\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09<ul\x20class=\x22video_line\x20fontBordList\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<li\x20class=\x22active\x22\x20data=\x22uniform\x22>', 'div.tkScroll', 'scrubbing', 'get', '#000', 'submitEl', '#DADFE6', '.quxian\x20.switch', '.zsCloud', '50px', 'parentElement', '.zmList', '.quxian', '<span\x20class=\x22spanHas\x20fr\x22\x20style=\x27display:block\x27><span\x20id=\x22InteractiveQuizTip\x22>', 'application/json', '</li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22depressed\x22>', '\x20markertime\x27\x20data-marker-time=\x27', 'text', 'document', 'playing', 'uniform', '<span\x20aria-hidden=\x22true\x22\x20class=\x22vjs-icon-placeholder\x22></span><span\x20class=\x22vjs-control-text\x22\x20aria-live=\x22polite\x22>快退</span>', 'textOpacity', 'videojs_id', 'mouseElTarget', '</span></div>', '<a\x20class=\x22ans-videoquiz-submit\x20bntLinear\x20fr\x22\x20id=\x22videoquiz-submit\x22>', 'vjserrdisplay', 'receiveStudyLog', '<div\x20class=\x27videoTitle\x20vjs-sub-title\x27><span>', '</a></li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22#0F0\x22\x20p_txt=\x22', 'video', 'ans-customIframeV2', 'getChild', 'handleMouseMove', '.moduleUlTracks\x20li', 'insertHtml', 'selectCDN', '<span\x20class=\x22vjsVolumeText\x22>', 'state', '&objectId=', '<li\x20class=\x22zsCloud_select\x22><span\x20class=\x22zsCloud_span\x22>', '<tpl\x20else>', 'status', '</a></li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22small-caps\x22\x20p_txt=\x22', 'add', 'aplusResourseId', 'ended', '.zmBlue', '\x22></span>', 'app', '</span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22rightbox\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22selectBox\x20vjs_bgc\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<p>', 'url', 'coursename', '<div\x20class=\x22tkTopic_numbar\x20fr\x22>', 'proxy_completed', 'prefix', 'firstPlayFace', '</p>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<ul>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22#000\x22\x20p_txt=\x22', 'startCapture', 'opType', 'responseText', 'fast10', 'rightContent', 'fly', '.topicId', 'checkResult', 'hideTimeline', 'showIFrame', 'volumechange', '#video_html5_api', 'eventArray', '<a\x20href=\x22javascript:;\x22\x20class=\x22continueLearn\x20fr\x22>', 'vjs-resolution-button', 'appendChild', '<span\x20class=\x22spanNotBack\x20fr\x22\x20id=\x22spanNotBackPoint\x22>', 'playAginCapture', 'isAlertTip', 'dynamicLabel', 'siblings', 'vjs_font_color', '<div\x20class=\x22tkTopic_con\x20tkScroll\x22>', 'sp_video_ppt_pic_w', '5306000TRqCRc', '{label}', '.vjs-poster', 'calculateDistance', 'getTime', 'mousedown', 'charAt', 'keydown', '&objectid=', '90px', 'reset', 'push', '</div></div></div>', 'a.sp_size_small', 'vjs-icon-previous-item\x20vjs-fast-replay-button\x20vjs-control\x20vjs-button', '&moocClassId=', 'showModel', '.moduleUlResolution', 'errorBack', 'errorCode', '&clipTime=', '{name}、{description}', '.sp_video_img', '/ananas/getpoints?courseid=', 'answerErr', 'getSeekBar', 'statusCode', '.vjs-progress-control', '</span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09</div>', 'isSupportFace', 'options_', 'heartbeat', 'More', 'videoTrailer', 'getComponent', 'ispublic', 'rightAnswerCount', 'initHeartbeat', 'focus', 'VideoLines', '.vjs-subs-caps-button\x20.vjs-icon-placeholder', 'ans.videojs.ErrorDisplay', 'spanNotBackPoint', 'cookie', 'cookieFid', 'prototype', 'customIframeV2', 'captureInterval', 'video_end_click', 'ans.videojs.CustomIframeV2', 'setHTML', 'isFiled', 'charCodeAt', 'event', '.vjs-current-time-display', 'now_', 'begins', 'handleMouseUp', 'deviceType', '.vjs-fullscreen-control', '.toolTipBox1', 'set', '<li\x20index=\x27', '.dragCon', 'MonospaceSerif', '.comment_box', 'sp_ppt_pic_fullScreen', 'seeked', 'isRight', 'mode', '.vjs_bgc\x20p', 'userAgent', 'checked=\x22checked\x22', 'playingCapture', 'playbackRateMenuButton', 'log', 'fontFamily', '/mooc-ans', 'undefined', '179952', '.vjs-playback-rate-value', 'playlinechange', '&classid=', 'heartbeatUrl\x20request\x20error', 'seekStartTime', 'hover', 'sp_size_big', '0.4', 'VideoJs', 'InteractiveQuizzes', '.vjs-sub-ul\x20.vjs-sub-item', '<div\x20class=\x22tkItem_title\x22>{description}</div>', 'querySelector', '434030DMzKcx', '\x20{interactiveQuestionCount}', 'timeupdate', 'topicid', 'AttachmentSetting', 'isStuH5Page', 'videoquiz-submitting', 'ans-customIframe', 'start', 'webkitIsFullScreen', '<div\x20class=\x22tkTopic_oper\x22>', 'ResolutionMenuItem', 'getNiceScroll', 'dtype', 'index', 'quizRightCountUrl', '<tpl\x20elseif=\x22questionType==\x27单选题\x27\x22>', 'pushVideoInfo2Window', 'filename', 'function', 'split', 'requesting', 'Ext.container.Container', 'isNotMark', '<div\x20class=\x22barMask\x22></div>', 'vjs-fast-forward-button', 'videoScreenFrame', 'touchstart', 'reportUrl', '<img\x20src=\x22{src}\x22\x20class=\x22sp_video_img\x22\x20style=\x22width:\x20100%;\x22/>', 'ans.videojs.VideoPpt', 'type', 'preventDefault', 'updateTime', 'backView', 'moreSubSettings', 'insertEditorScreenShot', 'a.tkParsing_dele', 'video_progress_drag', 'Black', 'Flash', 'addRemoteTextTrack', 'videoquiz', 'abs', 'input', 'onSelected', '</li>\x0a\x09\x09\x09\x09\x09\x09\x09</ul>\x0a\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22itemLineBx\x20marTop24\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22leftFontWid\x22>', 'Raised', 'ceil', 'ProportionalSans-Serif', 'observable', 'attachmentId', '.vjs-volume-panel\x20.vjs-mute-control', 'English', 'clientX', ''', 'resetTime', 'htmlEncodeByRegExp', 'aplusVideoName', 'create', 'Casual', 'danmaku', '\x27\x20title=\x27', '55px', 'call', 'play', 'sp_ppt_pic_fullScreen1', '</span><div\x20class=\x22zmSwitch\x20swithOn\x22></div>', 'Analysis', 'pybk_error', '1467924iAaSrc', 'objectId', 'msFullscreenElement', 'subPosition', 'showObject', 'visibility', 'cpi', 'videoTitles', 'vjs-hide-content', '#sp_video_ppt_pic', 'textTrackSettings', '#A5A5A5', '.vjs-self-setting\x20.video_playline\x20li', 'find', 'dropDown', 'faceCollection', 'loopCaptureInterval', '.vjs-control-bar\x20.vjs-self-setting', 'freeze', 'div', 'ans.videojs.VideoImg', '\x27\x20onclick=\x27markersPlayer(this)\x27>', 'marker-key', 'Ext.util.Observable', 'ans-audionote', 'showTip', 'slideDown', 'moderate', 'setInterval', 'boxEl', '</a></li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22script\x22\x20p_txt=\x22', 'sizeSmallEl', 'chapterCollectionType', '_disableSeek', 'style', '</p>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<ul\x20style=\x22bottom:30px;top:auto\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22proportionalSansSerif\x22\x20class=\x22active\x22\x20p_txt=\x22', '&enc=', 'onerror', 'cmp', '<', 'ans.videojs.ErrorNote', '.fastBox\x20span', 'keyCode', 'slideractive', 'afterBegin', 'ProportionalSerif', 'isPassed', 'initialySelectedLabel', 'display', 'getElementById', '&mid=', 'parentNode', 'ans.videojs.AudioNote', '.barMask', '.vjs-modal-dialog-content', 'isIos', 'a.stow_icon', '.zsCloud_div', '.vjs-self-setting\x20.vjs-menu', '.vjs-control-bar\x20.vjs-fullscreen-control', 'removeChild', '超高清', 'auto', 'left', '&moocCourseId=', 'resolutionSwitcher', 'endCapture', 'errorContinue', 'playingFace', 'PARENT_HOST', 'sec_', 'dtoken', 'name', 'subtitlePosition', '</span>', 'playTime', '67605LeRoQq', '.fontBordList\x20li', '.moduleUlTracks', 'videoTimeLimit', '.vjs-self-setting\x20.video_resolution\x20li', 'Cyan', '</li>', '10px', '</a></li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22#F0F\x22\x20p_txt=\x22', '#FFF', 'Ajax', 'params2VideoOpt', 'mixins', 'advancedetting', 'nodedetailcontroller/visitnodedetail', '<ul\x20class=\x22tkItem_ul\x22>', 'startTime', '_onlyBackward', 'SyncAnnotationEvent', 'ansErrorDisplay', 'net', 'videoJsResolutionSwitcher', 'select', '<div\x20class=\x22toZimuBx\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22toZimu\x22><span\x20class=\x22rightArrow\x22></span>', 'showAnnotation', 'videoFaceCaptureEnc', 's2_HOST', '</a></li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22#F00\x22\x20p_txt=\x22', 'offset', '.vjs-screen-shot', 'unbind', 'videoJsPlayLine', '&isdrag=', 'knowledgename', 'backgroundColor', 'submitBtn', '80px', 'splice', 'className', 'kind', 'callParent', 'answerContent', 'replace', 'firstClick', 'pageUrl', '<div\x20class=\x22zsCloud_item\x20topicId', 'public_cdn_prefix', 'eventCount', 'firstSeek', 'maxPercent', '<a\x20class=\x22spanHref\x20fl\x22\x20href=\x22javascript:\x22\x20id=\x22viewAnalysis\x22>', 'testAnalysis', 'httphd', '.vjs-tip-inner2', 'markersPlayer(this)', 'important', 'pageNo', 'aginPlay', '/hls/m3u8/', '.vjs-fullscreen-control-self', 'max', '</a></li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22#FFF\x22\x20p_txt=\x22', 'handleMouseDown', '<div\x20class=\x22videoTitle\x20vjs_hotmap_title\x22><span>', 'registerPlugin', 'durationDisplay', 'el_', 'playingFaceTime', 'renderData', 'otherInfo', 'sendLog', 'getPlugin', 'selected', 'marker', '<li><span\x20class=\x27topicId', '服务繁忙,不能保证您能否正常完成任务,请您稍后继续...(e:\x20', '</label></li>', '<li\x20class=\x22ans-videoquiz-opt\x22><label>', 'videoannotation', '&totalVideoDuration=', 'fireEvent', 'match', 'a.ans-videoquiz-back', 'windowColor', '\x22\x20title=\x22', 'qTotal', 'progressControl', '.vjs-volume-vertical\x20.vjsVolumeText', '.zimuBx\x20ul', 'addClass', 'drag', 'absolute', 'dragCutOffTime', 'continuePlay', 'getChildById', '.viewTran', 'pptPicEl', 'correctAnswer', 'default', 'destroy', 'tkParseScrollEl', 'dispose', 'sLow', 'full', 'playStatus', 'bottom', 'show', 'var\x20subs=', 'ends', 'headOffset', 'href', 'seekBarControl', '.vjs_advanced_setting', '</a>', 'video_pause_click', 'sort_', 'textTracks', 'padding', 'time', 'content', '<p\x20class=\x22comment_con\x22>{description}</p>', '&userid=', 'videoquiz-submit', 'audio', 'endTime', '.blueLine', 'Magenta', 'unset', '.writeDanmu', 'eventIntervalType', 'parents', 'corretTip2', 'object', 'src', 'define', 'disableSeek', '.zimuBx\x20.switch', 'attr', '\x20active', 'clazzId', 'onlyBackward', 'ans-timelineobjects', '</span><span\x20class=\x22rightArrow\x22></span>', '.vjs-tip2', 'knowledgePoint', 'naturalHeight', 'tkParsing_con', 'aId', ';\x20expires=', 'loadeddata', '.png', 'vjs-sub-ul\x20video_line\x20zmList\x20clearfix', 'shd', 'video.js', 'getPercent', '.moduleUlLine', 'playToggle', '</tpl>\x20', 'supportVideoPluginV1', 'naturalWidth', 'pauseTimeStamp', '您的网络不稳定,请您稍后继续...', '配置文件加载中,请稍后重新播放', 'eventPoints', 'preload', '.toHighSetting', '2XqaWTE', 'lastShowIFrame', 'resetDiv', 'bind', '<div\x20class=\x22sp_video_pic\x22>', 'objects', '.fontTran', 'currentResolution', 'hasClass', 'httpshd', 'd_yHJ!$pdA~5', 'fullscreenElement', 'objectid', '.vjs-control-bar\x20.vjs-screen-shot', 'data', 'duration', '.vjs-text-track-display', 'ErrorDisplay', 'chapterCapture', 'jumpTimePointList', 'block', 'courseid', '110px', '.video_setting_hotmap\x20.zmSwitch', 'off', '<span\x20class=\x22vjs-screen-shot\x22\x20title=\x22', 'sp_video_ppt_pic', 'frameInitSuccess', 'showAnswer', 'userId', 'IMG', '</span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22rightbox\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22selectBox\x20vjs_view_color\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<p>', 'setCookie', 'doubleSpeedValue', '.video-js', 'decode', 'niceScroll', '.vjs-volume-vertical', '</tpl></a>', 'validationUrl2', 'backgroundOpacity', '.dragFont', '.vjs_font_color\x20p', 'randomCaptureTime', 'viewAnalysis', '.landscapeMask', '<a\x20class=\x22sp_size_big\x22\x20id=\x22sp_size_big\x22\x20href=\x22javascript:;\x22></a>', 'elements', '</br>', 'vjs-playline-button', 'list', 'setProperty', 'videoEnc', 'fromCharCode', 'append', 'getCookie', '%</span>', 'requesting:\x20false', 'contextmenu', 'errorBackTime', 'ans-timelineobjects-autosize', 'continueStudy', '#zsCloud_div_', 'defaults', 'jobid', 'pauseTimeRange', 'extend', 'toString', '.resetBtn', 'isSendLog', 'getStyle', '40px', '&jobid=', 'viewAnalysisEl', 'screenshot', '.toZimu', 'message', '<div\x20class=\x27videoTitle\x27><span>', 'ans.videojs.TimelineObjects', '</span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22rightbox\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22dragBx\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22dragCon\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragClick\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22blueLine\x20bgBlue\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragStart\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragMiddle\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragEnd\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22dragCircle\x22\x20id=\x222\x22></div>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragFont\x20bgTran\x22>0%</span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22itemLineBx\x20marTop24\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22leftFontWid\x22>', 'translate', 'Annotations', '0.5', 'vjs-resolution-button-label', '3891045xEaLbS', 'UHD', '37216XNhuzx', 'knowledgeBack', '.vjs-self-setting\x20.vjs-menu-content', 'logCount', 'isShowFaceCollection', 'mouseup', '.vjs-playback-rate', '<span\x20class=\x22spanNot\x20fr\x22\x20id=\x22spanNot\x22><tpl\x20if=\x22dtype==\x27InteractiveQuiz\x27\x22>', 'videoSelfSetting', 'a.sp_video_pic_dele2', 'trigger', 'markers', 'cFid', 'supportH5Screen', 'seekstart', 'value', 'Subtitles', 'border', 'Extreme\x20speed', 'volumePanel', 'formatTime', 'options', 'Screenshot', '?uid=', 'cdn', 'weight', 'VideoClarity', 'continue_pybk_click', '</tpl>', 'apply', 'removeCls', ':visible', '<li>', 'finished', 'opacity', 'closeInnerPagePop', '&chapterId=', '.ans-timelineobjects', 'knowledgeid', 'removeClass', '.fontBord\x20.zmSwitch', 'studentstudy', 'rightNum', 'frameElement', '1670184UxKxeu', 'rootPath', 'videoNoteFrame', 'currentPlayline', '&dtype=Audio', 'poster_', 'subsCapsButton', '.moduleUlTracks\x20li:first', 'map', '</span></span>', 'none', 'visible', 'eventType', 'isPortal', 'indexOf', 'toGMTString', 'video_html5_api', 'includes', 'damuLastGetTime', 'Submitting', 'None', 'switchStatus', '<iframe\x20src=\x22{src}\x22\x20class=\x22configIframe\x22\x20style=\x22height:\x20100%;width:\x20100%;left:\x200;top:\x200;right:\x200;bottom:\x200;\x20background:\x20rgba(0,0,0,.6);\x22></iframe>', 'div.sp_video_ppt_pic', '.moduleUlLine\x20li', '</a></li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22#00F\x22\x20p_txt=\x22', 'back10', 'otherPointTimes', 'innerHTML', 'fullscreenToggle', 'pausePlayFace', 'videoTopicCloud', 'reload', 'onClick', 'aplus_video_id', 'height', 'pageX', '.vjs_view_color\x20p', '#ACB4BF', '#reader', '/s1.ananas.chaoxing.com', '.bgBlue', '50%', 'volume', '</tpl></span>', 'controlText', 'ans-videoquiz', '.zsCloud_down', 'closeEl', '.vjs-play-progress', '</span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22rightbox\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22dragBx\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22dragCon\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragClick\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22blueLine\x20viewBlue\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragStart\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragMiddle\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragEnd\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22dragCircle\x22\x20id=\x223\x22></div>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragFont\x20viewTran\x22>0%</span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09\x0a\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22videoTitle\x20marTop24\x20fontBord\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<span>', 'colse', 'multiQuestion', 'videoTrialDuration', 'sendDataLog', 'qAnsweR', '您可以尝试其他线路:\x20', 'vjs_sub_fontfamily', 'setAttribute', 'result', 'spanNot', '#editor1\x20.edui-for-screenshot', '.selectBox\x20ul\x20li', '</a></li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22casual\x22\x20p_txt=\x22', 'params', '视频只允许试看', 'audio/mp3', 'Blue', 'substr', 'supportHeartbeat', '</span></div><ul\x20class=\x22video_line\x20video_playline\x22>', 'label', 'showAsLabel', '/ananas/modules/video/wx/images/defautPosterUrl.png', 'checked', 'videojs', 'Green', 'videoppt', 'Yellow', 'datas', '.selectBox', 'getAttribute', '<div\x20class=\x22tkParsing\x22\x20id=\x22tkParsing\x22>', 'Typeface', '&duration=', 'eBstartPoint', '.vjs-playback-rate\x20.vjs-menu\x20.vjs-menu-content', 'danmuSet', 'video_speed_click', '</span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22rightbox\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22dragBx\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22dragCon\x22>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragClick\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22blueLine\x20zmBlue\x22\x20style=\x22width:\x2055%\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragStart\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragMiddle\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22dragEnd\x22></span>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<div\x20class=\x22dragCircle\x20zmpDragCircle\x22\x20style=\x22left:50px\x22\x20id=\x224\x22></div>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09</div>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<span\x20class=\x22zmdragFont\x22>', '<div\x20class=\x22ans-vjserrdisplay-title\x22>播放出现异常。</div>', 'playlines', 'ans-timelineobjectsbg', 'MultiEditor', 'isBackward', '/richvideo/initdatawithviewerV2?mid=', 'a.ans-videoquiz-continue', 'configFullScreen', 'indexorder', 'html', '</li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22raised\x22>', 'createEl', 'aplus_resource_id', 'videoimg', '<div\x20class=\x22tkParsing_screll\x20tkParsing_con\x22\x20id=\x22tkParsing_con\x22></div>', 'continueEl', '301kygRFg', 'resolution', 'vjs-sub-item', 'setAutoScroll', '.fontBordList', '&dtype=Video', 'stopPropagation', 'substring', 'afterEnd', 'var\x20d=', 'paused', 'aplus.record', '.m3u8?cdn=', '/question/addquestionerror?classid=', 'length', '<li\x20class=\x22ans-vjserrdisplay-opt\x22><label>', 'button', 'exports', 'Red', 'onClickListener', '.vjs-self-setting\x20.vjs-sub-title\x20.zmSwitch', '<ul\x20class=\x22ans-vjserrdisplay-opts\x22>', 'css', '</a></li>\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09\x09<li\x20data=\x22#0FF\x22\x20p_txt=\x22', '.zsCloud_ul', 'updateSrc'];
_0x5b04 = function () {
return _0x221c70;
}
;
return _0x5b04();
}
(function (_0x2ee0cb, _0x120b24) {
var _0x551d67 = _0x103f
, _0x169c75 = _0x2ee0cb();
while (!![]) {
try {
var _0x314273 = parseInt(_0x551d67(0x1d2)) / 0x1 + parseInt(_0x551d67(0x278)) / 0x2 * (parseInt(_0x551d67(0x2cc)) / 0x3) + parseInt(_0x551d67(0x511)) / 0x4 + -parseInt(_0x551d67(0x406)) / 0x5 * (-parseInt(_0x551d67(0x186)) / 0x6) + -parseInt(_0x551d67(0x364)) / 0x7 * (parseInt(_0x551d67(0x2ce)) / 0x8) + -parseInt(_0x551d67(0x2fa)) / 0x9 + parseInt(_0x551d67(0x140)) / 0xa * (-parseInt(_0x551d67(0x442)) / 0xb);
if (_0x314273 === _0x120b24)
break;
else
_0x169c75['push'](_0x169c75['shift']());
} catch (_0x26949c) {
_0x169c75['push'](_0x169c75['shift']());
}
}
}(_0x5b04, 0xb0993),
function (_0x3e3462) {
console.log("Internal:" + _0x3e3462);
var _0xf4b0bf = _0x103f;
function _0x539606(_0x469033, _0x5c8074) {
var _0x30d74c = (_0x469033 & 0xffff) + (_0x5c8074 & 0xffff)
, _0x5a83c8 = (_0x469033 >> 0x10) + (_0x5c8074 >> 0x10) + (_0x30d74c >> 0x10);
return _0x5a83c8 << 0x10 | _0x30d74c & 0xffff;
}
function _0x290ab3(_0x3ebaf9, _0x2c7998) {
return _0x3ebaf9 << _0x2c7998 | _0x3ebaf9 >>> 0x20 - _0x2c7998;
}
function _0x302067(_0x1eb845, _0xacaf52, _0xf1b49d, _0x40f514, _0x3fba48, _0x4fc2fd) {
return _0x539606(_0x290ab3(_0x539606(_0x539606(_0xacaf52, _0x1eb845), _0x539606(_0x40f514, _0x4fc2fd)), _0x3fba48), _0xf1b49d);
}
function _0x20844f(_0x461587, _0xab784, _0x3abd66, _0x2173f9, _0x1c387c, _0x3d3c91, _0x3d4666) {
return _0x302067(_0xab784 & _0x3abd66 | ~_0xab784 & _0x2173f9, _0x461587, _0xab784, _0x1c387c, _0x3d3c91, _0x3d4666);
}
function _0x41c830(_0x6eab3c, _0x4109e8, _0x354c10, _0x20ab85, _0x4abe6c, _0x570511, _0x2311b0) {
return _0x302067(_0x4109e8 & _0x20ab85 | _0x354c10 & ~_0x20ab85, _0x6eab3c, _0x4109e8, _0x4abe6c, _0x570511, _0x2311b0);
}
function _0x2efeaf(_0x2f3416, _0x593a97, _0x21433e, _0xc6c175, _0x2afc9d, _0x21a0ed, _0x4e283b) {
return _0x302067(_0x593a97 ^ _0x21433e ^ _0xc6c175, _0x2f3416, _0x593a97, _0x2afc9d, _0x21a0ed, _0x4e283b);
}
function _0x225375(_0x32c1b4, _0x3f8756, _0x133dee, _0x2a8e10, _0x35ff05, _0x54d261, _0x3eb8a0) {
return _0x302067(_0x133dee ^ (_0x3f8756 | ~_0x2a8e10), _0x32c1b4, _0x3f8756, _0x35ff05, _0x54d261, _0x3eb8a0);
}
function _0x2cb2ad(_0x1370a1, _0x8eb52e) {
var _0x4f5ee5 = _0x103f;
_0x1370a1[_0x8eb52e >> 0x5] |= 0x80 << _0x8eb52e % 0x20,
_0x1370a1[(_0x8eb52e + 0x40 >>> 0x9 << 0x4) + 0xe] = _0x8eb52e;
var _0x4d2cf0, _0x5008a3, _0x60c16d, _0x489816, _0x418021, _0x57e3ab = 0x67452301, _0x3d1a99 = -0x10325477, _0xae5b5b = -0x67452302, _0x1eae47 = 0x10325476;
for (_0x4d2cf0 = 0x0; _0x4d2cf0 < _0x1370a1[_0x4f5ee5(0x372)]; _0x4d2cf0 += 0x10) {
_0x5008a3 = _0x57e3ab,
_0x60c16d = _0x3d1a99,
_0x489816 = _0xae5b5b,
_0x418021 = _0x1eae47,
_0x57e3ab = _0x20844f(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0], 0x7, -0x28955b88),
_0x1eae47 = _0x20844f(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0x1], 0xc, -0x173848aa),
_0xae5b5b = _0x20844f(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0x2], 0x11, 0x242070db),
_0x3d1a99 = _0x20844f(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0x3], 0x16, -0x3e423112),
_0x57e3ab = _0x20844f(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0x4], 0x7, -0xa83f051),
_0x1eae47 = _0x20844f(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0x5], 0xc, 0x4787c62a),
_0xae5b5b = _0x20844f(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0x6], 0x11, -0x57cfb9ed),
_0x3d1a99 = _0x20844f(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0x7], 0x16, -0x2b96aff),
_0x57e3ab = _0x20844f(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0x8], 0x7, 0x698098d8),
_0x1eae47 = _0x20844f(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0x9], 0xc, -0x74bb0851),
_0xae5b5b = _0x20844f(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0xa], 0x11, -0xa44f),
_0x3d1a99 = _0x20844f(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0xb], 0x16, -0x76a32842),
_0x57e3ab = _0x20844f(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0xc], 0x7, 0x6b901122),
_0x1eae47 = _0x20844f(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0xd], 0xc, -0x2678e6d),
_0xae5b5b = _0x20844f(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0xe], 0x11, -0x5986bc72),
_0x3d1a99 = _0x20844f(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0xf], 0x16, 0x49b40821),
_0x57e3ab = _0x41c830(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0x1], 0x5, -0x9e1da9e),
_0x1eae47 = _0x41c830(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0x6], 0x9, -0x3fbf4cc0),
_0xae5b5b = _0x41c830(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0xb], 0xe, 0x265e5a51),
_0x3d1a99 = _0x41c830(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0], 0x14, -0x16493856),
_0x57e3ab = _0x41c830(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0x5], 0x5, -0x29d0efa3),
_0x1eae47 = _0x41c830(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0xa], 0x9, 0x2441453),
_0xae5b5b = _0x41c830(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0xf], 0xe, -0x275e197f),
_0x3d1a99 = _0x41c830(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0x4], 0x14, -0x182c0438),
_0x57e3ab = _0x41c830(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0x9], 0x5, 0x21e1cde6),
_0x1eae47 = _0x41c830(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0xe], 0x9, -0x3cc8f82a),
_0xae5b5b = _0x41c830(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0x3], 0xe, -0xb2af279),
_0x3d1a99 = _0x41c830(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0x8], 0x14, 0x455a14ed),
_0x57e3ab = _0x41c830(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0xd], 0x5, -0x561c16fb),
_0x1eae47 = _0x41c830(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0x2], 0x9, -0x3105c08),
_0xae5b5b = _0x41c830(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0x7], 0xe, 0x676f02d9),
_0x3d1a99 = _0x41c830(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0xc], 0x14, -0x72d5b376),
_0x57e3ab = _0x2efeaf(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0x5], 0x4, -0x5c6be),
_0x1eae47 = _0x2efeaf(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0x8], 0xb, -0x788e097f),
_0xae5b5b = _0x2efeaf(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0xb], 0x10, 0x6d9d6122),
_0x3d1a99 = _0x2efeaf(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0xe], 0x17, -0x21ac7f4),
_0x57e3ab = _0x2efeaf(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0x1], 0x4, -0x5b4115bc),
_0x1eae47 = _0x2efeaf(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0x4], 0xb, 0x4bdecfa9),
_0xae5b5b = _0x2efeaf(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0x7], 0x10, -0x944b4a0),
_0x3d1a99 = _0x2efeaf(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0xa], 0x17, -0x41404390),
_0x57e3ab = _0x2efeaf(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0xd], 0x4, 0x289b7ec6),
_0x1eae47 = _0x2efeaf(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0], 0xb, -0x155ed806),
_0xae5b5b = _0x2efeaf(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0x3], 0x10, -0x2b10cf7b),
_0x3d1a99 = _0x2efeaf(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0x6], 0x17, 0x4881d05),
_0x57e3ab = _0x2efeaf(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0x9], 0x4, -0x262b2fc7),
_0x1eae47 = _0x2efeaf(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0xc], 0xb, -0x1924661b),
_0xae5b5b = _0x2efeaf(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0xf], 0x10, 0x1fa27cf8),
_0x3d1a99 = _0x2efeaf(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0x2], 0x17, -0x3b53a99b),
_0x57e3ab = _0x225375(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0], 0x6, -0xbd6ddbc),
_0x1eae47 = _0x225375(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0x7], 0xa, 0x432aff97),
_0xae5b5b = _0x225375(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0xe], 0xf, -0x546bdc59),
_0x3d1a99 = _0x225375(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0x5], 0x15, -0x36c5fc7),
_0x57e3ab = _0x225375(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0xc], 0x6, 0x655b59c3),
_0x1eae47 = _0x225375(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0x3], 0xa, -0x70f3336e),
_0xae5b5b = _0x225375(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0xa], 0xf, -0x100b83),
_0x3d1a99 = _0x225375(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0x1], 0x15, -0x7a7ba22f),
_0x57e3ab = _0x225375(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0x8], 0x6, 0x6fa87e4f),
_0x1eae47 = _0x225375(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0xf], 0xa, -0x1d31920),
_0xae5b5b = _0x225375(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0x6], 0xf, -0x5cfebcec),
_0x3d1a99 = _0x225375(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0xd], 0x15, 0x4e0811a1),
_0x57e3ab = _0x225375(_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47, _0x1370a1[_0x4d2cf0 + 0x4], 0x6, -0x8ac817e),
_0x1eae47 = _0x225375(_0x1eae47, _0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1370a1[_0x4d2cf0 + 0xb], 0xa, -0x42c50dcb),
_0xae5b5b = _0x225375(_0xae5b5b, _0x1eae47, _0x57e3ab, _0x3d1a99, _0x1370a1[_0x4d2cf0 + 0x2], 0xf, 0x2ad7d2bb),
_0x3d1a99 = _0x225375(_0x3d1a99, _0xae5b5b, _0x1eae47, _0x57e3ab, _0x1370a1[_0x4d2cf0 + 0x9], 0x15, -0x14792c6f),
_0x57e3ab = _0x539606(_0x57e3ab, _0x5008a3),
_0x3d1a99 = _0x539606(_0x3d1a99, _0x60c16d),
_0xae5b5b = _0x539606(_0xae5b5b, _0x489816),
_0x1eae47 = _0x539606(_0x1eae47, _0x418021);
}
return [_0x57e3ab, _0x3d1a99, _0xae5b5b, _0x1eae47];
}
function _0x51e470(_0x7719ec) {
var _0x3a77b1 = _0x103f, _0x16e5a5, _0xb3f9ae = '', _0x1fc2a0 = _0x7719ec[_0x3a77b1(0x372)] * 0x20;
for (_0x16e5a5 = 0x0; _0x16e5a5 < _0x1fc2a0; _0x16e5a5 += 0x8) {
_0xb3f9ae += String[_0x3a77b1(0x2ad)](_0x7719ec[_0x16e5a5 >> 0x5] >>> _0x16e5a5 % 0x20 & 0xff);
}
return _0xb3f9ae;
}
function _0x5bfade(_0x272b24) {
var _0x176020 = _0x103f, _0x583723, _0x3d9e24 = [];
_0x3d9e24[(_0x272b24['length'] >> 0x2) - 0x1] = undefined;
for (_0x583723 = 0x0; _0x583723 < _0x3d9e24[_0x176020(0x372)]; _0x583723 += 0x1) {
_0x3d9e24[_0x583723] = 0x0;
}
var _0x41d635 = _0x272b24[_0x176020(0x372)] * 0x8;
for (_0x583723 = 0x0; _0x583723 < _0x41d635; _0x583723 += 0x8) {
_0x3d9e24[_0x583723 >> 0x5] |= (_0x272b24['charCodeAt'](_0x583723 / 0x8) & 0xff) << _0x583723 % 0x20;
}
return _0x3d9e24;
}
function _0xbf3476(_0x2491f4) {
var _0x508b5c = _0x103f;
return _0x51e470(_0x2cb2ad(_0x5bfade(_0x2491f4), _0x2491f4[_0x508b5c(0x372)] * 0x8));
}
function _0x32a09b(_0x3ded0b, _0x169904) {
var _0x5a733d = _0x103f, _0x13e3d1, _0x1f4dc = _0x5bfade(_0x3ded0b), _0x2b7ea4 = [], _0xf4d9c3 = [], _0x26cc6f;
_0x2b7ea4[0xf] = _0xf4d9c3[0xf] = undefined;
_0x1f4dc['length'] > 0x10 && (_0x1f4dc = _0x2cb2ad(_0x1f4dc, _0x3ded0b[_0x5a733d(0x372)] * 0x8));
for (_0x13e3d1 = 0x0; _0x13e3d1 < 0x10; _0x13e3d1 += 0x1) {
_0x2b7ea4[_0x13e3d1] = _0x1f4dc[_0x13e3d1] ^ 0x36363636,
_0xf4d9c3[_0x13e3d1] = _0x1f4dc[_0x13e3d1] ^ 0x5c5c5c5c;
}
return _0x26cc6f = _0x2cb2ad(_0x2b7ea4[_0x5a733d(0x3a9)](_0x5bfade(_0x169904)), 0x200 + _0x169904['length'] * 0x8),
_0x51e470(_0x2cb2ad(_0xf4d9c3[_0x5a733d(0x3a9)](_0x26cc6f), 0x200 + 0x80));
}
function _0x2fd993(_0x1ad161) {
var _0x2ec854 = _0x103f, _0x17ed45 = _0x2ec854(0x3d3), _0x164dde = '', _0x371955, _0x17fdaf;
for (_0x17fdaf = 0x0; _0x17fdaf < _0x1ad161[_0x2ec854(0x372)]; _0x17fdaf += 0x1) {
_0x371955 = _0x1ad161[_0x2ec854(0x117)](_0x17fdaf),
_0x164dde += _0x17ed45[_0x2ec854(0xe9)](_0x371955 >>> 0x4 & 0xf) + _0x17ed45['charAt'](_0x371955 & 0xf);
}
return _0x164dde;
}
function _0xe8c2bb(_0x15eaae) {
return unescape(encodeURIComponent(_0x15eaae));
}
function _0x519c3b(_0xcdcb0c) {
return _0xbf3476(_0xe8c2bb(_0xcdcb0c));
}
function _0x1dbe76(_0x81a8ce) {
return _0x2fd993(_0x519c3b(_0x81a8ce));
}
function _0x591392(_0x357ba4, _0x52e36b) {
return _0x32a09b(_0xe8c2bb(_0x357ba4), _0xe8c2bb(_0x52e36b));
}
function _0x26b770(_0x1aa1c1, _0x5baa25) {
return _0x2fd993(_0x591392(_0x1aa1c1, _0x5baa25));
}
// _0x2a5647: MD5
function _0x2a5647(_0xe6661d, _0x47e33b, _0x488de0) {
modifiedHashOriginal = replacePlayingTime(_0xe6661d);
console.log("MD5 Modified:" + modifiedHashOriginal);
modifiedHash = _0x1dbe76(modifiedHashOriginal);
console.log("MD5 Modified Hash:" + modifiedHash);
navigator.clipboard.writeText(modifiedHash);
console.log("MD5 Modified Hash Copied to Clipboard");
console.log("MD5");
console.log("Type of First Param:" + typeof _0xe6661d);
if (_0xe6661d) { console.log("First Param:" + _0xe6661d.toString()); }
if (_0x47e33b) { console.log("Second Param:" + _0x47e33b.toString()); }
if (_0x488de0) { console.log("Third Param:" + _0x488de0.toString()); }
if (!_0x47e33b) {
if (!_0x488de0) {
// log the result before returning
var res = _0x1dbe76(_0xe6661d);
console.log(res);
return res;
}
var res = _0x519c3b(_0xe6661d);
console.log(res);
return res;
}
if (!_0x488de0) {
var res = _0x26b770(_0x47e33b, _0xe6661d);
console.log(res);
return res;
}
var res = _0x591392(_0x47e33b, _0xe6661d);
console.log(res);
return res;
}
typeof define === _0xf4b0bf(0x153) && define['amd'] ? define(function () {
return _0x2a5647;
}) : typeof module === _0xf4b0bf(0x256) && module[_0xf4b0bf(0x375)] ? module[_0xf4b0bf(0x375)] = _0x2a5647 : _0x3e3462['md5'] = _0x2a5647;
}(this),
Ext[_0x425094(0x2eb)](Ext, {
'setCookie': function (_0x16e223, _0x39bdcf) {
var _0x5b5f0f = _0x425094
, _0x3f9ac5 = arguments
, _0x580318 = arguments[_0x5b5f0f(0x372)]
, _0x2cadda = _0x580318 > 0x2 ? _0x3f9ac5[0x2] : null
, _0x346c96 = _0x580318 > 0x3 ? _0x3f9ac5[0x3] : '/'
, _0x1dac6e = _0x580318 > 0x4 ? _0x3f9ac5[0x4] : null
, _0x5bbcb0 = _0x580318 > 0x5 ? _0x3f9ac5[0x5] : ![];
document['cookie'] = _0x16e223 + '=' + escape(_0x39bdcf) + (_0x2cadda === null ? '' : _0x5b5f0f(0x266) + _0x2cadda[_0x5b5f0f(0x309)]()) + (_0x346c96 === null ? '' : _0x5b5f0f(0x390) + _0x346c96) + (_0x1dac6e === null ? '' : _0x5b5f0f(0x40f) + _0x1dac6e) + (_0x5bbcb0 === !![] ? ';\x20secure' : '');
},
'getCookie': function (_0x6df9ff, _0xfea348) {
var _0x2108ab = _0x425094
, _0x151804 = _0x6df9ff + '='
, _0x35466c = _0x151804[_0x2108ab(0x372)]
, _0x59d34a = document['cookie'][_0x2108ab(0x372)]
, _0x3271a1 = 0x0
, _0x1da8c0 = 0x0;
while (_0x3271a1 < _0x59d34a) {
_0x1da8c0 = _0x3271a1 + _0x35466c;
if (document[_0x2108ab(0x10e)][_0x2108ab(0x36b)](_0x3271a1, _0x1da8c0) == _0x151804)
return this[_0x2108ab(0x3af)](_0x1da8c0);
_0x3271a1 = document['cookie'][_0x2108ab(0x308)]('\x20', _0x3271a1) + 0x1;
if (_0x3271a1 === 0x0)
break;
}
return _0xfea348;
},
'getCookieVal': function (_0x3f734e) {
var _0x18cd90 = _0x425094
, _0x525fad = document[_0x18cd90(0x10e)][_0x18cd90(0x308)](';', _0x3f734e);
return _0x525fad == -0x1 && (_0x525fad = document[_0x18cd90(0x10e)][_0x18cd90(0x372)]),
unescape(document[_0x18cd90(0x10e)]['substring'](_0x3f734e, _0x525fad));
}
}),
Ext['define'](_0x425094(0x426), {
'videoJs': null,
'mixins': {
'observable': 'Ext.util.Observable'
},
'constructor': function (_0x4c5656) {
var _0xfa4171 = _0x425094;
_0x4c5656 = _0x4c5656 || {};
var _0x11cfdc = this;
_0x11cfdc[_0xfa4171(0x479)]([_0xfa4171(0x2dc)]),
_0x11cfdc['mixins']['observable'][_0xfa4171(0x459)][_0xfa4171(0x180)](_0x11cfdc, _0x4c5656);
var _0xdd29d2 = _0x4c5656 && _0x4c5656[_0xfa4171(0x3f5)] ? _0x4c5656['callbackfn'] : function () { }
, _0x1a2327 = videojs(_0x4c5656['videojs'], _0x11cfdc[_0xfa4171(0x1dd)](_0x4c5656[_0xfa4171(0x33a)]), _0xdd29d2);
_0x1a2327[_0xfa4171(0x1eb)] = _0x4c5656['params'][_0xfa4171(0x1eb)],
_0x1a2327[_0xfa4171(0x201)] = 0x0,
Ext['fly'](_0x4c5656[_0xfa4171(0x345)])['on']('contextmenu', function (_0x1260ec) {
var _0x3f18ff = _0xfa4171;
_0x1260ec[_0x3f18ff(0x160)]();
}),
$(_0xfa4171(0x29a))[_0xfa4171(0x25b)]('tabindex', 0x1),
$('.vjs-big-play-button')['on'](_0xfa4171(0x3ce), function (_0x255eec) {
var _0x47d533 = _0xfa4171;
$(_0x47d533(0x29a))[_0x47d533(0x109)]();
}),
Ext[_0xfa4171(0x4fe)](_0x4c5656[_0xfa4171(0x345)])['on']('keydown', function (_0x109b91) {
var _0x4e661e = _0xfa4171;
(_0x109b91['keyCode'] == 0x20 || _0x109b91[_0x4e661e(0x1b0)] == 0x6b) && _0x109b91[_0x4e661e(0x160)]();
if (_0x109b91['keyCode'] == 0x20)
_0x1a2327[_0x4e661e(0x36e)]() ? _0x1a2327[_0x4e661e(0x181)]() : _0x1a2327['pause']();
else {
if (_0x109b91[_0x4e661e(0x1b0)] == 0x25 || _0x109b91[_0x4e661e(0x1b0)] == 0x27) {
var _0x3db10b = _0x4c5656['params'][_0x4e661e(0x402)]
, _0x28b00f = _0x4c5656[_0x4e661e(0x33a)]['jobid'];
if (typeof _0x3db10b != _0x4e661e(0x131) && _0x3db10b === 0x0 && typeof _0x28b00f != _0x4e661e(0x131) && _0x28b00f != '' && window['parent'][_0x4e661e(0x3f8)][_0x4e661e(0x392)][_0x4e661e(0x240)]['indexOf'](_0x4e661e(0x2f7)) > -0x1)
videojs(_0x4e661e(0x4dd))[_0x4e661e(0x469)](_0x109b91['keyCode']);
else {
if (_0x109b91['keyCode'] == 0x25) {
var _0x3f7427 = parseInt(_0x1a2327['currentTime']())
, _0x198f55 = _0x3f7427 - 0x5 < 0x0 ? 0x0 : _0x3f7427 - 0x5;
_0x1a2327[_0x4e661e(0x3bc)](_0x198f55);
} else {
if (_0x109b91[_0x4e661e(0x1b0)] == 0x27) {
var _0x3f7427 = parseInt(_0x1a2327[_0x4e661e(0x3bc)]())
, _0x198f55 = _0x3f7427 + 0x5 > duration ? duration : _0x3f7427 + 0x5;
_0x1a2327['currentTime'](_0x198f55);
}
}
}
}
}
});
_0x1a2327[_0xfa4171(0x1e7)] && _0x1a2327['on']('resolutionchange', function () {
var _0x50f6ed = _0xfa4171
, _0x3bdf7b = _0x1a2327[_0x50f6ed(0x27f)]()
, _0x26d715 = _0x3bdf7b[_0x50f6ed(0x44a)] ? _0x3bdf7b['sources'][0x0][_0x50f6ed(0x453)] : ![];
Ext[_0x50f6ed(0x298)](_0x50f6ed(0x365), _0x26d715);
});
_0x1a2327[_0xfa4171(0x1f1)] && _0x1a2327['on'](_0xfa4171(0x134), function () {
var _0x4905da = _0xfa4171
, _0x2dc3d6 = _0x1a2327[_0x4905da(0x2fd)]();
Ext[_0x4905da(0x298)]('net', _0x2dc3d6[_0x4905da(0x1e6)]);
});
var _0x8961 = _0x4c5656['params'] && _0x4c5656[_0xfa4171(0x33a)][_0xfa4171(0x3e1)] ? 0x2 : 0x1
, _0x19a225 = !![];
_0x1a2327['on']('ratechange', function () {
var _0x5d92fb = _0xfa4171
, _0x26243f = _0x1a2327['playbackRate']();
_0x26243f > _0x8961 ? (_0x1a2327['pause'](),
_0x1a2327[_0x5d92fb(0x4a6)](0x1)) : Ext[_0x5d92fb(0x298)]('doubleSpeedValue', _0x26243f);
if (typeof aplus_queue != _0x5d92fb(0x131) && !_0x19a225) {
var _0x19c7cc = _0x4c5656['params'] && _0x4c5656['params'][_0x5d92fb(0x31c)] ? _0x4c5656[_0x5d92fb(0x33a)][_0x5d92fb(0x31c)] : ''
, _0xbbb8c5 = _0x4c5656[_0x5d92fb(0x33a)] && _0x4c5656['params']['aplus_resource_id'] ? _0x4c5656[_0x5d92fb(0x33a)]['aplus_resource_id'] : ''
, _0xfdc8c9 = _0x4c5656[_0x5d92fb(0x33a)] && _0x4c5656[_0x5d92fb(0x33a)]['knowledgename'] ? _0x4c5656[_0x5d92fb(0x33a)][_0x5d92fb(0x1f3)] : ''
, _0x1c63c1 = _0x4c5656[_0x5d92fb(0x33a)] && _0x4c5656[_0x5d92fb(0x33a)]['coursename'] ? _0x4c5656[_0x5d92fb(0x33a)][_0x5d92fb(0x4f3)] : '';
aplus_queue[_0x5d92fb(0xee)]({
'action': _0x5d92fb(0x36f),
'arguments': [_0x5d92fb(0x352), _0x5d92fb(0x4b2), {
'video_name': _0xfdc8c9,
'video_id': _0x19c7cc,
'resource_id': _0xbbb8c5,
'resource_name': _0x1c63c1,
'speed_type': _0x1a2327[_0x5d92fb(0x4a6)]()
}]
});
}
_0x19a225 = ![];
}),
_0x1a2327['on'](_0xfa4171(0x181), function () {
var _0x227e5e = _0xfa4171;
try {
$('.video-js')[_0x227e5e(0x109)]();
if (_0x4c5656['params'] && _0x4c5656['params'][_0x227e5e(0x3e1)] && parseInt(_0x4c5656['params']['doublespeed']) === 0x1) {
var _0x1f7074 = Ext[_0x227e5e(0x2af)](_0x227e5e(0x299), 0x1);
_0x1a2327[_0x227e5e(0x4a6)](_0x1f7074);
}
$(_0x227e5e(0x2d4))['removeClass'](_0x227e5e(0x4bb)),
$(_0x227e5e(0x3e2))[_0x227e5e(0x372)] == 0x0 && ($(_0x227e5e(0x133))[_0x227e5e(0x37a)](_0x227e5e(0x2f0), _0x227e5e(0x13a)),
$(_0x227e5e(0x350))[_0x227e5e(0x37a)](_0x227e5e(0x2df), 'none'),
$(_0x227e5e(0x350))[_0x227e5e(0x37a)](_0x227e5e(0x247), '0'));
} catch (_0x4e003f) {
console[_0x227e5e(0x12e)](_0x4e003f);
}
}),
_0x1a2327['on'](_0xfa4171(0x4ed), function () {
var _0x18a5aa = _0xfa4171;
try {
_0x4c5656[_0x18a5aa(0x33a)][_0x18a5aa(0x402)] = 0x1,
_0x1a2327['finished'] = !![],
_0x1a2327[_0x18a5aa(0x259)](![]),
$(_0x18a5aa(0xfe))[_0x18a5aa(0x1f0)](_0x18a5aa(0x3ce));
} catch (_0x18f4a2) {
console[_0x18a5aa(0x12e)](_0x18f4a2);
}
}),
_0x1a2327['on'](_0xfa4171(0x503), function () {
var _0x25bfc0 = _0xfa4171;
$(_0x25bfc0(0x174))[_0x25bfc0(0x280)](_0x25bfc0(0x480)) ? $(_0x25bfc0(0x229))[_0x25bfc0(0x4cf)]('0%') : $('.vjs-volume-vertical\x20.vjsVolumeText')['text'](Math['floor'](_0x1a2327[_0x25bfc0(0x325)]() * 0x64) + '%');
}),
_0x1a2327[_0xfa4171(0x49e)](function () {
var _0x2d2cdc = _0xfa4171;
$(_0x2d2cdc(0x29d))[_0x2d2cdc(0x2ae)](_0x2d2cdc(0x4e4) + Math[_0x2d2cdc(0x4b0)](_0x1a2327[_0x2d2cdc(0x325)]() * 0x64) + _0x2d2cdc(0x2b0)),
(_0x4c5656[_0x2d2cdc(0x33a)] && _0x4c5656['params'][_0x2d2cdc(0x11d)] == 0x1 || parent[_0x2d2cdc(0x3f8)][_0x2d2cdc(0x392)][_0x2d2cdc(0x240)][_0x2d2cdc(0x308)](_0x2d2cdc(0x4af)) > -0x1) && $(_0x2d2cdc(0x513))[_0x2d2cdc(0x48f)]('<div\x20class=\x22vjs-bgmark\x22></div>');
});
},
'params2VideoOpt': function (_0x4fa47e) {
var _0xfabbba = _0x425094
, _0x7a0768 = typeof _0x4fa47e[_0xfabbba(0x18c)] == _0xfabbba(0x131) ? 0x0 : _0x4fa47e[_0xfabbba(0x18c)]
, _0x53a591 = []
, _0x1e6967 = _0x4fa47e['cdnPrefix'] || _0x4fa47e[_0xfabbba(0x200)];
if (typeof _0x1e6967 != _0xfabbba(0x131) && _0x1e6967[_0xfabbba(0x372)] > 0x0)
for (var _0xbcad10 = 0x0; _0xbcad10 < _0x1e6967[_0xfabbba(0x372)]; _0xbcad10++) {
var _0x3b0d8 = _0xbcad10 + 0x1
, _0x2e4eb8 = {
'indexorder': _0xbcad10,
'label': isEn ? 'Line\x20' + _0x3b0d8 : '公网' + _0x3b0d8,
'ispublic': !![],
'net': 'p' + _0x3b0d8,
'prefix': _0x1e6967[_0xbcad10]
};
_0x53a591[_0xfabbba(0xee)](_0x2e4eb8);
}
else
_0x53a591 = [{
'indexorder': 0x0,
'label': isEn ? 'Line\x201' : '公网1',
'url': ServerHosts['s1_HOST'],
'ispublic': !![],
'net': 'p1'
}, {
'indexorder': 0x1,
'label': isEn ? 'Line\x202' : _0xfabbba(0x45f),
'url': ServerHosts[_0xfabbba(0x1ec)],
'ispublic': !![],
'net': 'p2'
}];
if (_0x4fa47e[_0xfabbba(0x2e6)]) {
for (var _0xbcad10 = 0x0; _0xbcad10 < _0x4fa47e[_0xfabbba(0x2e6)][_0xfabbba(0x372)]; _0xbcad10++) {
var _0x24e999 = _0x4fa47e[_0xfabbba(0x2e6)][_0xbcad10];
_0x24e999[_0xfabbba(0x1e6)] = 's' + _0xbcad10;
}
try {
top[_0xfabbba(0x3f4)][_0xfabbba(0x4f0)] && top['window'][_0xfabbba(0x4f0)] == 0x2 ? _0x53a591 = _0x53a591[_0xfabbba(0x3a9)](_0x4fa47e[_0xfabbba(0x2e6)]) : _0x53a591 = _0x53a591[_0xfabbba(0x3a9)](_0x4fa47e['cdn'])[_0xfabbba(0x47e)](function (_0x427975, _0x201db3) {
var _0xbcb3a6 = _0xfabbba;
return _0x427975[_0xbcb3a6(0x35c)] - _0x201db3[_0xbcb3a6(0x35c)];
});
} catch (_0x50d80e) {
_0x53a591 = _0x53a591[_0xfabbba(0x3a9)](_0x4fa47e[_0xfabbba(0x2e6)]);
}
}
function _0x5e41ff(_0x8f06ec) {
var _0x1a6dd4 = _0xfabbba
, _0x1b9ae4 = Ext['getCookie']('net', 'p1')
, _0x1b5440 = [];
for (var _0x1a56b4 = 0x0; _0x1a56b4 < _0x8f06ec[_0x1a6dd4(0x372)]; _0x1a56b4++) {
if (_0x8f06ec[_0x1a56b4][_0x1a6dd4(0x1e6)] == _0x1b9ae4) {
_0x1b5440 = _0x8f06ec[_0x1a56b4];
break;
}
}
return _0x1b5440;
}
function _0x40a4e7(_0x79fdf5, _0x14931d, _0x57862d) {
var _0x5d0ed5 = _0xfabbba;
return ServerHosts['HLS_ANS_HOST'] + _0x5d0ed5(0x20c) + _0x79fdf5 + '/' + _0x14931d + _0x5d0ed5(0x370) + encodeURIComponent(_0x57862d);
}
function _0x240654(_0x12145b, _0x3b495f) {
var _0x352873 = _0xfabbba
, _0x3251ad = _0x12145b[_0x352873(0x257)][_0x352873(0x36b)](_0x12145b['src']['indexOf']('.'))
, _0x1b8c9b = _0x12145b[_0x352873(0x257)];
typeof _0x3b495f[_0x352873(0x4f6)] != _0x352873(0x131) && (_0x1b8c9b = location['protocol'] + '//' + _0x3b495f[_0x352873(0x4f6)] + _0x3251ad);
if (_0x3b495f[_0x352873(0x106)])
return {
'src': _0x1b8c9b,
'type': _0x352873(0x39e),
'res': _0x12145b[_0x352873(0x453)]
};
else {
var _0x37c689 = _0x3251ad[_0x352873(0x308)]('/')
, _0x1e5767 = _0x3251ad[_0x352873(0x33e)](_0x37c689);
return {
'src': _0x3b495f[_0x352873(0x4f2)] + _0x352873(0x322) + _0x1e5767,
'type': _0x352873(0x39e),
'res': _0x12145b[_0x352873(0x453)]
};
}
}
var _0xf6d12c = []
, _0x4ca7ab = Ext['getCookie'](_0xfabbba(0x365), 0x168);
!_0x4fa47e['rootPath'] && (_0x4fa47e[_0xfabbba(0x2fb)] = _0xfabbba(0x130));
_0x4fa47e['http'] && _0xf6d12c['push']({
'src': _0x4fa47e[_0xfabbba(0x495)],
'type': _0xfabbba(0x39e),
'label': isEn ? 'SD' : '标清',
'resolution': 'sd',
'res': 0x168
});
_0x4fa47e[_0xfabbba(0x206)] && (_0xf6d12c[_0xfabbba(0xee)]({
'src': _0x4fa47e['httphd'],
'type': _0xfabbba(0x39e),
'label': isEn ? 'HD' : '高清',
'resolution': 'hd',
'res': 0x2d0
}),
_0x4ca7ab = Ext['getCookie']('resolution', 0x2d0));
_0x4fa47e['httpshd'] && _0xf6d12c[_0xfabbba(0xee)]({
'src': _0x4fa47e[_0xfabbba(0x281)],
'type': _0xfabbba(0x39e),
'label': isEn ? _0xfabbba(0x2cd) : _0xfabbba(0x1c3),
'resolution': _0xfabbba(0x26a),
'res': 0x438
});
_0x4fa47e[_0xfabbba(0x408)] && _0xf6d12c[_0xfabbba(0xee)]({
'src': _0x4fa47e[_0xfabbba(0x408)],
'type': 'video/mp4',
'label': isEn ? _0xfabbba(0x2e0) : '极速',
'resolution': 'md',
'res': 0xf0
});
if (_0xf6d12c['length'] == 0x1) {
var _0x24e999 = _0xf6d12c[0x0];
_0x24e999[_0xfabbba(0x341)] = isEn ? 'HD' : '高清';
}
var _0x231de1 = ![];
for (var _0xbcad10 = 0x0; _0xbcad10 < _0xf6d12c[_0xfabbba(0x372)]; _0xbcad10++) {
if (_0xf6d12c[_0xbcad10]['res'] == _0x4ca7ab) {
_0x231de1 = !![];
break;
}
}
!_0x231de1 && (_0x4ca7ab = 0x168);
var _0x1131fd = !Ext['isChaoxing'] && (Ext[_0xfabbba(0x1bd)] || Ext['isAndroid'])
, _0x3f4290 = function (_0x787c99, _0x13c1cb, _0x4caaf7, _0x3a3b77) {
var _0x5361bf = _0xfabbba;
try {
if (typeof top[_0x5361bf(0x43a)] != _0x5361bf(0x131) && top[_0x5361bf(0x43a)] === !![] && isUnFinishJob())
return;
if (typeof top['videoTimeLimit'] != 'undefined' && top[_0x5361bf(0x1d5)] === !![] && isUnFinishJob())
return;
} catch (_0x992608) {
console['log'](_0x992608);
}
if (_0x1131fd)
return;
var _0x5c8535 = this;
!_0x5c8535[_0x5361bf(0x2d1)] && (_0x5c8535[_0x5361bf(0x2d1)] = 0x0),
videojs['xhr']({
'uri': _0x13c1cb,
'headers': {
'Content-Type': _0x5361bf(0x4cc)
}
}, function (_0x235622, _0x5e00ca) {
var _0x400017 = _0x5361bf;
_0x5c8535[_0x400017(0x2d1)]++;
if (_0x5e00ca[_0x400017(0xfd)] == 0xc8) {
_0x5c8535['logCount'] = 0x0;
if (_0x5e00ca[_0x400017(0x3f3)]['indexOf']('isPassed') < 0x0) {
window[_0x400017(0x3f8)] && window['parent'][_0x400017(0x392)][_0x400017(0x31a)]();
return;
}
eval('var\x20d=' + _0x5e00ca['body']);
if (d[_0x400017(0x1b4)]) {
try {
typeof d['hasJobLimit'] != _0x400017(0x131) && d['hasJobLimit'] === !![] && (top[_0x400017(0x447)] = ![],
top[_0x400017(0x43a)] = !![]),
typeof d['videoTimeLimit'] != _0x400017(0x131) && d[_0x400017(0x1d5)] === !![] && (top[_0x400017(0x447)] = ![],
top['videoTimeLimit'] = !![]);
} catch (_0x1ff4c8) {
console[_0x400017(0x12e)](_0x1ff4c8);
}
_0x3a3b77();
} else
!_0x4caaf7 && _0x3a3b77();
return;
}
if (_0x5c8535[_0x400017(0x2d1)] >= 0x4) {
_0x5c8535[_0x400017(0x2d1)] = 0x0,
_0x787c99[_0x400017(0x389)]();
if (_0x5e00ca[_0x400017(0xfd)] != 0x0) {
if (_0x5e00ca[_0x400017(0xfd)] == 0xca || _0x5e00ca[_0x400017(0xfd)] == 0x12e)
try {
parent[_0x400017(0x392)][_0x400017(0x31a)]();
} catch (_0x254ab6) {
console[_0x400017(0x12e)](_0x254ab6[_0x400017(0x2c4)]);
}
else
alert(_0x400017(0x21d) + _0x5e00ca[_0x400017(0xfd)] + ')');
} else
alert(_0x400017(0x273));
}
});
}
, _0x3e44db = function (_0x29c1cd, _0x295025, _0x483279, _0xbcc005) {
var _0x335b47 = _0xfabbba;
if (!_0x4fa47e['reportUrl'])
return;
if (_0x4fa47e[_0x335b47(0x116)] == 0x1 || _0x4fa47e[_0x335b47(0x4e5)] == 0x1)
return;
var _0x47bb32 = _0x335b47(0x488), _0x379ffd = (_0x4fa47e[_0x335b47(0x1e2)] || '0') + '_' + (_0x4fa47e['endTime'] || _0x4fa47e[_0x335b47(0x287)]), _0x514a11 = 0x0, _0x43b58f;
_0x483279[_0x335b47(0x2bb)]()[_0x335b47(0x308)]('-') != -0x1 ? (_0x43b58f = _0x483279['split']('-'),
_0x43b58f[_0x335b47(0x372)] == 0x2 && (_0x514a11 = parseInt(_0x43b58f[0x1]) * 0x3e8)) : _0x514a11 = _0x483279 * 0x3e8;
if (_0x514a11 == _0x4fa47e[_0x335b47(0x287)] * 0x3e8 && _0x295025 == 0x2)
return;
var _0x556816 = Ext[_0x335b47(0x3bb)][_0x335b47(0x3b7)](_0x47bb32, _0x4fa47e['clazzId'], _0x4fa47e[_0x335b47(0x4aa)], _0x4fa47e[_0x335b47(0x2b8)] || '', _0x4fa47e[_0x335b47(0x187)], _0x514a11, 'd_yHJ!$pdA~5', _0x4fa47e[_0x335b47(0x287)] * 0x3e8, _0x379ffd)
, _0x2ebca7 = [_0x4fa47e[_0x335b47(0x15c)], '/', _0x4fa47e[_0x335b47(0x1cd)], _0x335b47(0x3e7), _0x4fa47e['clazzId'], _0x335b47(0x3ad), _0x483279, '&duration=', _0x4fa47e[_0x335b47(0x287)], _0x335b47(0xf7), _0x379ffd, _0x335b47(0x4e6), _0x4fa47e[_0x335b47(0x187)], '&otherInfo=', _0x4fa47e[_0x335b47(0x217)], _0x335b47(0x2c0), _0x4fa47e['jobid'], _0x335b47(0x24b), _0x4fa47e[_0x335b47(0x4aa)], '&isdrag=', _0x295025, _0x335b47(0x41f), _0x335b47(0x1aa), md5(_0x556816), _0x335b47(0x38d), _0x4fa47e['rt'], '&videoFaceCaptureEnc=', _0x29c1cd[_0x335b47(0x1eb)], _0x335b47(0x369), _0x335b47(0x3f0), new Date()['getTime']()][_0x335b47(0x440)]('');
_0x3f4290(_0x29c1cd, _0x2ebca7, _0x4fa47e[_0x335b47(0x2b8)], _0xbcc005);
};
return {
'language': _0xfabbba(0x49a),
'poster': _0x4fa47e[_0xfabbba(0x2c2)],
'controls': !![],
'preload': _0xfabbba(0x304),
'sources': _0xf6d12c,
'playlines': _0x53a591,
'playbackRates': _0x4fa47e[_0xfabbba(0x3e1)] != 0x0 ? [0.75, 0x1, 1.25, 1.5, 0x2] : ![],
'textTrackDisplay': !![],
'controlBar': {
'volumePanel': {
'inline': ![]
},
'children': [_0xfabbba(0x26e), _0xfabbba(0x12d), _0xfabbba(0x4a3), 'timeDivider', _0xfabbba(0x213), _0xfabbba(0x228), _0xfabbba(0x2e1), _0xfabbba(0x300), _0xfabbba(0x317), _0xfabbba(0x1f1)]
},
'plugins': {
'videoJsResolutionSwitcher': {
'default': _0x4ca7ab,
'dynamicLabel': !![],
'customSourcePicker': function (_0x76132b, _0x9ee8d, _0x615810) {
var _0x31cf8e = _0xfabbba
, _0x1fb022 = _0x76132b[_0x31cf8e(0x2fd)]();
_0x76132b[_0x31cf8e(0x257)](_0x9ee8d[_0x31cf8e(0x302)](function (_0xcc594e) {
return _0x240654(_0xcc594e, _0x1fb022);
}));
if (typeof aplus_queue != _0x31cf8e(0x131)) {
function _0xcedee9() {
var _0x58cb31 = _0x31cf8e
, _0xad1c56 = '';
for (var _0x3c1b21 = 0x1; _0x3c1b21 <= 0x20; _0x3c1b21++) {
var _0xe38144 = Math[_0x58cb31(0x4b0)](Math[_0x58cb31(0x4a5)]() * 0x10)[_0x58cb31(0x2bb)](0x10);
_0xad1c56 += _0xe38144,
(_0x3c1b21 == 0x8 || _0x3c1b21 == 0xc || _0x3c1b21 == 0x10 || _0x3c1b21 == 0x14) && (_0xad1c56 += '-');
}
return _0xad1c56;
}
typeof aplus_queue != _0x31cf8e(0x131) && aplus_queue[_0x31cf8e(0xee)]({
'action': _0x31cf8e(0x36f),
'arguments': ['video_positive_load', 'CLK', {
'video_name': _0x4fa47e[_0x31cf8e(0x1f3)] || '',
'video_id': _0x4fa47e[_0x31cf8e(0x31c)] || '',
'resource_id': _0x4fa47e[_0x31cf8e(0x360)] || '',
'resource_name': _0x4fa47e[_0x31cf8e(0x4f3)] || '',
'video_duration': _0x4fa47e[_0x31cf8e(0x287)],
'request_id': _0xcedee9()
}]
});
}
return _0x76132b;
}
},
'studyControl': {
'enableSwitchWindow': _0x4fa47e['enableSwitchWindow']
},
'seekBarControl': {
'objectId': _0x4fa47e[_0xfabbba(0x187)],
'headOffset': _0x4fa47e[_0xfabbba(0x23f)],
'enableFastForward': _0x4fa47e[_0xfabbba(0x402)],
'isSendLog': !!parent['AttachmentSetting'] && _0x4fa47e['control'],
'reportTimeInterval': _0x4fa47e['reportTimeInterval'],
'isShowDanmu': _0x4fa47e[_0xfabbba(0x17d)],
'chapterCapture': _0x4fa47e[_0xfabbba(0x28a)] || 0x0,
'captureInterval': _0x4fa47e[_0xfabbba(0x112)] || 0x258,
'chapterCollectionType': _0x4fa47e[_0xfabbba(0x1a6)] || 0x0,
'startCapture': _0x4fa47e[_0xfabbba(0x4f9)],
'endCapture': _0x4fa47e[_0xfabbba(0x1c8)],
'playAginCapture': _0x4fa47e[_0xfabbba(0x50a)],
'playingCapture': _0x4fa47e[_0xfabbba(0x12c)],
'playingLoopCapture': _0x4fa47e['playingLoopCapture'],
'duration': _0x4fa47e[_0xfabbba(0x287)],
'isSupportFace': _0x4fa47e[_0xfabbba(0x100)] || ![],
'isShowFaceCollection': _0x4fa47e['isShowFaceCollection'],
'jumpTimePointList': _0x4fa47e[_0xfabbba(0x28b)],
'videoFaceCaptureEnc': _0x4fa47e[_0xfabbba(0x1eb)],
'randomCaptureTime': _0x4fa47e['randomCaptureTime'],
'attachmentId': _0x4fa47e[_0xfabbba(0x265)],
'aplusVideoId': _0x4fa47e['aplus_video_id'] || '',
'aplusResourseId': _0x4fa47e[_0xfabbba(0x360)] || '',
'aplusVideoName': _0x4fa47e[_0xfabbba(0x1f3)] || '',
'aplusResourceName': _0x4fa47e[_0xfabbba(0x4f3)] || '',
'sourcePlayer': _0xfabbba(0x4dd),
'deviceType': _0x4fa47e[_0xfabbba(0x11d)] || 0x0,
'danmuSet': _0x4fa47e['danmaku'] || 0x0,
'sendLog': function (_0x595fe3, _0x4f8273, _0x54b4f3, _0x479e37) {
var _0x248f01 = _0xfabbba;
if (this['isSendLog'] !== !![])
return;
var _0x330af0 = 0x0;
switch (_0x4f8273) {
case _0x248f01(0x4d1):
_0x330af0 = 0x0;
break;
case 'drag':
_0x330af0 = 0x1;
break;
case _0x248f01(0x181):
_0x330af0 = 0x3;
break;
case 'pause':
_0x330af0 = 0x2;
break;
case _0x248f01(0x4ed):
_0x330af0 = 0x4;
break;
}
var _0x34caa3 = this;
_0x3e44db(_0x595fe3, _0x330af0, _0x54b4f3, function () {
var _0x28cb27 = _0x248f01;
try {
_0x330af0 === 0x4 && typeof _0x479e37 != _0x28cb27(0x131) && (_0x479e37[_0x28cb27(0x330)](_0x28cb27(0x4ed)),
_0x595fe3[_0x28cb27(0x444)]() && (closeFullScreen && closeFullScreen()),
_0x479e37[_0x28cb27(0x44c)](_0x34caa3[_0x28cb27(0x173)]));
} catch (_0x157df4) {
console[_0x28cb27(0x12e)](_0x157df4);
}
window[_0x28cb27(0x4f5)] && window[_0x28cb27(0x4f5)]();
});
}
},
'timelineObjects': {
'begins': _0x4fa47e['begins'],
'ends': _0x4fa47e[_0xfabbba(0x23e)],
'url': _0x4fa47e['rootPath'] + _0xfabbba(0x359) + _0x4fa47e[_0xfabbba(0x464)] + _0xfabbba(0x397) + _0x4fa47e['cpi'] + _0xfabbba(0x135) + _0x4fa47e[_0xfabbba(0x25d)] + _0xfabbba(0x3b4) + _0x4fa47e[_0xfabbba(0x28d)],
'quizErrorReportUrl': _0x4fa47e['rootPath'] + _0xfabbba(0x371) + _0x4fa47e[_0xfabbba(0x25d)] + _0xfabbba(0x397) + _0x4fa47e[_0xfabbba(0x18c)],
'validationUrl2': _0x4fa47e[_0xfabbba(0x2fb)] + '/question/quiz-validation?classid=' + _0x4fa47e['clazzId'] + _0xfabbba(0x397) + _0x7a0768 + _0xfabbba(0xeb) + _0x4fa47e[_0xfabbba(0x187)],
'quizRightCountUrl': _0x4fa47e[_0xfabbba(0x2fb)] + _0xfabbba(0x476) + _0x4fa47e[_0xfabbba(0x25d)] + _0xfabbba(0x397) + _0x7a0768,
'isPortal': _0x4fa47e[_0xfabbba(0x307)]
},
'customIframePlugin': {
'eventArray': _0x4fa47e['eventArray'],
'supportHeartbeat': _0x4fa47e[_0xfabbba(0x33f)],
'courseid': _0x4fa47e[_0xfabbba(0x28d)],
'clazzId': _0x4fa47e[_0xfabbba(0x25d)],
'userId': _0x4fa47e[_0xfabbba(0x4aa)],
'cookieFid': _0x4fa47e[_0xfabbba(0x10f)],
'knowledgeid': _0x4fa47e[_0xfabbba(0x2f4)],
'objectid': _0x4fa47e['objectid'],
'playTime': _0x4fa47e[_0xfabbba(0x1d1)],
'videoEnc': _0x4fa47e[_0xfabbba(0x2ac)],
'headOffset': _0x4fa47e[_0xfabbba(0x23f)]
},
'customIframePluginV2': {
'eventArray': _0x4fa47e['eventArray'],
'supportVideoPluginV1': _0x4fa47e[_0xfabbba(0x270)],
'courseid': _0x4fa47e[_0xfabbba(0x28d)],
'clazzId': _0x4fa47e[_0xfabbba(0x25d)],
'userId': _0x4fa47e[_0xfabbba(0x4aa)],
'cookieFid': _0x4fa47e[_0xfabbba(0x10f)],
'knowledgeid': _0x4fa47e[_0xfabbba(0x2f4)],
'objectid': _0x4fa47e[_0xfabbba(0x284)],
'playTime': _0x4fa47e[_0xfabbba(0x1d1)],
'videoEnc': _0x4fa47e['videoEnc'],
'headOffset': _0x4fa47e[_0xfabbba(0x23f)]
},
'subtitle': {
'translate': _0x4fa47e[_0xfabbba(0x3b8)],
'subtitleUrl': _0x4fa47e[_0xfabbba(0x2fb)] + _0xfabbba(0x413) + _0x4fa47e[_0xfabbba(0x464)] + _0xfabbba(0xeb) + _0x4fa47e[_0xfabbba(0x187)] + _0xfabbba(0x3b4) + _0x4fa47e[_0xfabbba(0x28d)],
'subtitle': _0xfabbba(0x4ac) + _0x4fa47e[_0xfabbba(0x454)],
'cookieFid': _0x4fa47e[_0xfabbba(0x2da)],
'deviceType': _0x4fa47e[_0xfabbba(0x11d)] || 0x0
},
'marker': {
'url': !_0x4fa47e[_0xfabbba(0x157)] ? _0xfabbba(0xfa) + _0x4fa47e[_0xfabbba(0x28d)] + _0xfabbba(0x1b8) + _0x4fa47e[_0xfabbba(0x464)] : '',
'ff': _0x4fa47e[_0xfabbba(0x402)],
'videoTopicCloud': _0x4fa47e[_0xfabbba(0x319)]
},
'videoJsPlayLine': {
'defaults': _0x5e41ff(_0x53a591),
'dynamicLabel': !![],
'customSourcePicker': function (_0x4d5c81, _0x4c54ac, _0x3fdba0) {
var _0x17df78 = _0xfabbba
, _0x2a4c70 = _0x4d5c81[_0x17df78(0x27f)]()[_0x17df78(0x44a)][0x0];
return _0x4d5c81[_0x17df78(0x257)](_0x240654(_0x2a4c70, _0x4c54ac)),
_0x4d5c81;
}
},
'videoSelfSetting': {
'cookieFid': _0x4fa47e['cFid'],
'subtitle': {
'translate': _0x4fa47e['chapterVideoTranslate'],
'subtitleUrl': _0x4fa47e['rootPath'] + _0xfabbba(0x413) + _0x4fa47e[_0xfabbba(0x464)] + _0xfabbba(0xeb) + _0x4fa47e[_0xfabbba(0x187)] + _0xfabbba(0x3b4) + _0x4fa47e[_0xfabbba(0x28d)],
'subtitle': _0xfabbba(0x4ac) + _0x4fa47e[_0xfabbba(0x454)]
},
'deviceType': _0x4fa47e[_0xfabbba(0x11d)] || 0x0,
'playlineDefault': _0x5e41ff(_0x53a591),
'resolutionDefault': _0x4ca7ab,
'hideHotBtn': _0x4fa47e[_0xfabbba(0x287)] < 0x78 || parent[_0xfabbba(0x3f8)]['location'][_0xfabbba(0x240)][_0xfabbba(0x308)](_0xfabbba(0x1e0)) > -0x1 || _0x4fa47e['ut'] == 't' || parent[_0xfabbba(0x3f8)][_0xfabbba(0x392)][_0xfabbba(0x240)][_0xfabbba(0x308)](_0xfabbba(0x3db)) > -0x1
}
}
};
}
}),
(Object['defineProperty'](ans['VideoJs'][_0x425094(0x110)], _0x425094(0x1dd), {
'configurable': ![],
'writable': ![]
}),
Object[_0x425094(0x198)](ans[_0x425094(0x13b)]['prototype']['params2VideoOpt'])),
(function () {
var _0x255b73 = _0x425094
, _0x22b792 = videojs['getPlugin'](_0x255b73(0x466))
, _0x3e22c0 = videojs['extend'](_0x22b792, {
'constructor': function (_0x17df70, _0x17982a) {
var _0x1b2608 = _0x255b73;
_0x22b792[_0x1b2608(0x180)](this, _0x17df70, _0x17982a);
var _0x484ac3 = this
, _0x5a919c = _0x17982a[_0x1b2608(0x4d6)]
, _0x1716c6 = 0x1;
_0x17982a[_0x1b2608(0x463)] !== 0x1 && (_0x1716c6 = 0x0);
if (!_0x5a919c)
try {
_0x5a919c = window['top'] ? window[_0x1b2608(0x49c)] : window[_0x1b2608(0x4d0)];
} catch (_0x532d10) {
_0x5a919c = window[_0x1b2608(0x3f8)] ? window['parent'] : window[_0x1b2608(0x4d0)];
}
try {
Ext[_0x1b2608(0x4fe)](_0x5a919c)['on']('mouseout', function (_0x5c592b) {
var _0x1659be = _0x1b2608;
_0x5c592b = _0x5c592b ? _0x5c592b : window[_0x1659be(0x118)];
var _0x475e9e = _0x5c592b['relatedTarget'] || _0x5c592b[_0x1659be(0x410)];
!_0x475e9e && (_0x1716c6 != 0x1 && _0x17df70['pause']());
});
} catch (_0x4e3b44) {
console[_0x1b2608(0x12e)](_0x4e3b44[_0x1b2608(0x2c4)]);
}
_0x484ac3[_0x1b2608(0x48c)](_0x17df70);
},
'singleton': function (_0x2c1de7) {
var _0x3e37cc = _0x255b73
, _0x3285bb = this
, _0x4eda16 = parseInt(Math[_0x3e37cc(0x4a5)]() * 0x98967f);
_0x2c1de7['on']('play', function () {
var _0x346312 = _0x3e37cc;
Ext[_0x346312(0x298)](_0x346312(0x4d5), _0x4eda16);
}),
_0x2c1de7[_0x3e37cc(0x1a2)](function () {
var _0x2c7db8 = Ext['getCookie']('videojs_id');
typeof _0x2c7db8 != 'undefined' && _0x2c7db8 != _0x4eda16 && _0x2c1de7['pause']();
}, 0x3e8);
}
});
videojs[_0x255b73(0x212)](_0x255b73(0x490), _0x3e22c0);
}()),
(function () {
var _0x395d27 = _0x425094
, _0x170989 = videojs[_0x395d27(0x105)](_0x395d27(0x3cc))
, _0x31e289 = videojs[_0x395d27(0x2ba)](_0x170989, {
'constructor': function (_0x262ca3, _0x2386e4) {
var _0x34f6d7 = _0x395d27;
_0x170989[_0x34f6d7(0x180)](this, _0x262ca3, _0x2386e4);
var _0xc6f1ce = this;
_0x262ca3[_0x34f6d7(0x3a0)] = ![],
_0x262ca3[_0x34f6d7(0x455)] = ![],
_0x262ca3[_0x34f6d7(0x202)] = !![],
_0x262ca3[_0x34f6d7(0x259)] = function (_0x523553) {
_0xc6f1ce['disableSeek'](_0x523553);
}
,
_0x262ca3[_0x34f6d7(0x25e)] = function (_0x27874c) {
var _0x2ce23f = _0x34f6d7;
_0xc6f1ce[_0x2ce23f(0x25e)](_0x27874c);
}
,
_0x262ca3[_0x34f6d7(0xfc)] = function () {
return _0xc6f1ce;
}
,
_0xc6f1ce['on'](_0x34f6d7(0x1b1), function () {
var _0x24ca5b = _0x34f6d7;
_0x262ca3[_0x24ca5b(0x2d8)]('seekstart'),
_0x262ca3['ignorePause'] = !![],
_0x262ca3[_0x24ca5b(0x411)] = !![],
_0x262ca3[_0x24ca5b(0x40b)] = ![];
}),
_0xc6f1ce['on'](_0x34f6d7(0x4b1), function () {
var _0x2704f9 = _0x34f6d7;
_0x262ca3[_0x2704f9(0x2d8)](_0x2704f9(0x382)),
_0x262ca3[_0x2704f9(0x40b)] = ![];
}),
_0xc6f1ce[_0x34f6d7(0x203)] = 0x0,
_0x262ca3['on'](_0x34f6d7(0x142), function () {
var _0x41daa2 = _0x34f6d7;
_0xc6f1ce['maxPercent'] = Math[_0x41daa2(0x20e)](_0xc6f1ce[_0x41daa2(0x26c)](), _0xc6f1ce['maxPercent']);
});
},
'getCurrentTime_': function () {
return this['player_']['currentTime']();
},
'getMaxPercent': function () {
var _0xfe93ab = _0x395d27;
return this[_0xfe93ab(0x203)];
},
'isBackward': function (_0x49a01b) {
var _0x48b762 = _0x395d27;
return this[_0x48b762(0x203)] > this[_0x48b762(0xe6)](_0x49a01b);
},
'handleMouseDown': function (_0x228c94) {
var _0x58e4e2 = _0x395d27;
if (this['_onlyBackward']) {
if (!this[_0x58e4e2(0x358)](_0x228c94))
return;
}
if (this[_0x58e4e2(0x1a7)] === !![])
return;
_0x170989[_0x58e4e2(0x110)][_0x58e4e2(0x210)]['call'](this, _0x228c94);
},
'handleMouseMove': function (_0x3e1c00) {
var _0x48d611 = _0x395d27;
if (this[_0x48d611(0x1a7)] === !![])
return;
if (this[_0x48d611(0x1e3)]) {
if (!this[_0x48d611(0x358)](_0x3e1c00))
return;
}
_0x170989[_0x48d611(0x110)][_0x48d611(0x4e0)][_0x48d611(0x180)](this, _0x3e1c00);
},
'handleMouseUp': function (_0x2d9b40) {
var _0x1887fb = _0x395d27;
if (this['_disableSeek'] === !![])
return;
if (this[_0x1887fb(0x1e3)]) {
if (!this[_0x1887fb(0x358)](_0x2d9b40))
return;
}
_0x170989[_0x1887fb(0x110)][_0x1887fb(0x11c)]['call'](this, _0x2d9b40);
},
'disableSeek': function (_0x184e8b) {
var _0x431b07 = _0x395d27
, _0x34f639 = this;
_0x34f639[_0x431b07(0x1a7)] = _0x184e8b !== ![],
_0x34f639[_0x431b07(0x1a7)] ? _0x34f639[_0x431b07(0x430)]() : _0x34f639['enable']();
},
'onlyBackward': function (_0x56c275) {
var _0x46eb11 = _0x395d27
, _0x11115d = this;
_0x11115d[_0x46eb11(0x1e3)] = _0x56c275 !== ![];
}
});
videojs[_0x395d27(0x483)](_0x395d27(0x3cc), _0x31e289);
}()),
(function () {
var _0x459259 = _0x425094
, _0x35324c = videojs['getPlugin'](_0x459259(0x466))
, _0x568d49 = videojs['extend'](_0x35324c, {
'constructor': function (_0xf5bb8d, _0x11feae) {
var _0x33e233 = _0x459259;
_0x35324c[_0x33e233(0x180)](this, _0xf5bb8d, _0x11feae);
var _0x230906 = this;
_0x230906[_0x33e233(0x187)] = _0x11feae[_0x33e233(0x187)],
_0x230906[_0x33e233(0x1fd)] = !![],
_0x230906[_0x33e233(0x46d)] = !!_0x11feae[_0x33e233(0x2bd)],
_0x230906['isShowDanmu_'] = !!_0x11feae['isShowDanmu'],
_0x230906[_0x33e233(0x30c)] = 0x0,
_0x230906[_0x33e233(0x485)] = !![],
_0x230906[_0x33e233(0x4f7)] = !![],
_0x230906['pausePlayFace'] = ![],
_0x230906['playingFace'] = ![],
_0x230906[_0x33e233(0x215)] = 0x0,
_0x230906[_0x33e233(0x28a)] = _0x11feae[_0x33e233(0x28a)] || 0x0,
_0x230906[_0x33e233(0x112)] = _0x11feae[_0x33e233(0x112)] * 0x3c || 0x258,
_0x230906['chapterCollectionType'] = _0x11feae[_0x33e233(0x1a6)] || 0x0,
_0x230906[_0x33e233(0x100)] = _0x11feae[_0x33e233(0x100)],
_0x230906['isAlertTip'] = ![],
_0x230906[_0x33e233(0x4f9)] = _0x11feae[_0x33e233(0x4f9)],
_0x230906[_0x33e233(0x1c8)] = _0x11feae[_0x33e233(0x1c8)],
_0x230906[_0x33e233(0x50a)] = _0x11feae[_0x33e233(0x50a)],
_0x230906[_0x33e233(0x12c)] = _0x11feae[_0x33e233(0x12c)],
_0x230906[_0x33e233(0x486)] = _0x11feae[_0x33e233(0x486)],
_0x230906[_0x33e233(0x2d2)] = _0x11feae[_0x33e233(0x2d2)],
_0x230906[_0x33e233(0x287)] = _0x11feae['duration'],
_0x230906[_0x33e233(0x28b)] = _0x11feae[_0x33e233(0x28b)],
_0x230906[_0x33e233(0x196)] = _0x11feae[_0x33e233(0x2a3)],
_0x230906['randomCaptureTime'] = _0x11feae[_0x33e233(0x2a3)],
_0x230906[_0x33e233(0x1eb)] = _0x11feae[_0x33e233(0x1eb)],
_0x230906['attachmentId'] = _0x11feae[_0x33e233(0x173)],
_0x230906[_0x33e233(0x3f6)] = _0x11feae['aplusVideoId'],
_0x230906[_0x33e233(0x4ec)] = _0x11feae[_0x33e233(0x4ec)],
_0x230906[_0x33e233(0x17a)] = _0x11feae['aplusVideoName'],
_0x230906[_0x33e233(0x4b7)] = _0x11feae[_0x33e233(0x4b7)],
_0xf5bb8d[_0x33e233(0x22e)] = _0x11feae['headOffset'] ? _0x11feae[_0x33e233(0x23f)] : 0x0,
_0xf5bb8d[_0x33e233(0x475)] = ![],
_0xf5bb8d['playStatus'] = _0x33e233(0x148),
_0x230906[_0x33e233(0x351)] = _0x11feae[_0x33e233(0x351)],
_0x230906[_0x33e233(0x11d)] = _0x11feae['deviceType'] || 0x0;
!_0x11feae[_0x33e233(0x218)] && (_0x11feae['sendLog'] = function () { }
);
_0x11feae['headOffset'] && _0xf5bb8d[_0x33e233(0x3bc)](_0x11feae[_0x33e233(0x23f)]);
function _0x40f2f7() {
var _0x82f4bd = _0x33e233;
typeof aplus_queue != _0x82f4bd(0x131) && aplus_queue[_0x82f4bd(0xee)]({
'action': _0x82f4bd(0x36f),
'arguments': [_0x82f4bd(0x102), _0x82f4bd(0x4b2), {
'video_name': _0x230906[_0x82f4bd(0x17a)],
'video_id': _0x230906[_0x82f4bd(0x3f6)],
'resource_id': _0x230906[_0x82f4bd(0x4ec)],
'resource_name': _0x230906[_0x82f4bd(0x4b7)],
'request_id': _0x230906[_0x82f4bd(0x38a)]()
}]
});
}
var _0xf3d1f7 = null
, _0x113b18 = 0x0
, _0x31a471 = 0x0
, _0x5dd335 = _0x11feae[_0x33e233(0x3fc)] || 0x3c
, _0x506fce = _0x5dd335 * 0x3e8
, _0x3c69cb = function (_0x46aa90, _0x53e79c, _0x480ea9) {
var _0x98dde2 = _0x33e233
, _0x55b273 = $(_0x98dde2(0x261));
_0x55b273[_0x98dde2(0x193)](_0x98dde2(0x207))[_0x98dde2(0x4cf)](_0x480ea9),