ravnur-player-public 3.4.3 → 3.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +7 -0
- package/.eslintrc.js +206 -0
- package/.flowconfig +3 -0
- package/.vscode/extensions.json +7 -0
- package/.vscode/launch.json +37 -0
- package/.vscode/settings.json +4 -0
- package/README-Private.md +54 -0
- package/babel.config.js +28 -0
- package/bitbucket-pipelines.yml +61 -0
- package/cert.pem +23 -0
- package/demo/BaseM.mp4 +0 -0
- package/demo/HD.mp4 +0 -0
- package/demo/annotations.json +50 -0
- package/demo/annotations_ge.json +50 -0
- package/demo/base.mp3 +0 -0
- package/demo/cc_2125en.vtt +4958 -0
- package/demo/cc_en.vtt +171 -0
- package/demo/cc_ge.vtt +178 -0
- package/demo/chapters_en.vtt +38 -0
- package/demo/chapters_ge.vtt +5 -0
- package/demo/chapters_ge1.json +23 -0
- package/demo/hls/audio/stereo/en/128kbit.m3u8 +912 -0
- package/demo/hls/audio/stereo/none/128kbit.m3u8 +912 -0
- package/demo/hls/audio/surround/en/320kbit.m3u8 +912 -0
- package/demo/hls/playlist.m3u8 +31 -0
- package/demo/hls/video/10000kbit.m3u8 +894 -0
- package/demo/hls/video/1100kbit.m3u8 +894 -0
- package/demo/hls/video/1500kbit.m3u8 +894 -0
- package/demo/hls/video/250kbit.m3u8 +894 -0
- package/demo/hls/video/4000kbit.m3u8 +894 -0
- package/demo/hls/video/500kbit.m3u8 +894 -0
- package/demo/hls/video/6000kbit.m3u8 +894 -0
- package/demo/hls/video/800kbit.m3u8 +894 -0
- package/demo/hls.js +5 -0
- package/demo/hls.js.map +1 -0
- package/demo/hls.min.js +2 -0
- package/demo/hls.min.js.map +1 -0
- package/demo/playlist.m3u8 +31 -0
- package/demo/ravnur-flash-audio.swf +0 -0
- package/demo/ravnur-flash-video-hls.swf +0 -0
- package/demo/ravnur-flash-video.swf +0 -0
- package/demo/shaka/shaka-player.foo.debug.d.ts +4532 -0
- package/demo/shaka/shaka-player.foo.debug.externs.js +3886 -0
- package/demo/shaka/shaka-player.foo.debug.js +1746 -0
- package/demo/shaka/shaka-player.foo.debug.map +8 -0
- package/demo/shaka/wrapper.js +7 -0
- package/demo/test.html +458 -0
- package/dist/RavnurMediaPlayer.min.js +1 -1
- package/dist/cdn/RavnurMediaPlayer.min.js +1 -1
- package/jest.config.js +4 -0
- package/key.pem +27 -0
- package/lib/es5.js +344 -0
- package/lib/images/Spinner-small.gif +0 -0
- package/lib/images/close.png +0 -0
- package/lib/images/ic_check_box_black_24dp_1x.png +0 -0
- package/lib/images/ic_check_box_outline_blank_black_24dp_1x.png +0 -0
- package/lib/images/ic_chevron_left_white_24dp_1x.png +0 -0
- package/lib/images/ic_chevron_right_white_24dp_1x.png +0 -0
- package/lib/images/ic_closed_caption_white_24dp_1x.png +0 -0
- package/lib/images/ic_fast_forward_white_24dp_1x.png +0 -0
- package/lib/images/ic_fast_rewind_white_24dp_1x.png +0 -0
- package/lib/images/ic_fullscreen_exit_white_24dp_1x.png +0 -0
- package/lib/images/ic_fullscreen_white_24dp_1x.png +0 -0
- package/lib/images/ic_hd_white_24dp_1x.png +0 -0
- package/lib/images/ic_keyboard_arrow_left_black_24dp_1x.png +0 -0
- package/lib/images/ic_keyboard_arrow_right_black_24dp_1x.png +0 -0
- package/lib/images/ic_pause_white_24dp_1x.png +0 -0
- package/lib/images/ic_photo_white_24dp_1x.png +0 -0
- package/lib/images/ic_play_arrow_white_24dp_1x.png +0 -0
- package/lib/images/ic_refresh_white_24dp_1x.png +0 -0
- package/lib/images/ic_settings_white_24dp_1x.png +0 -0
- package/lib/images/ic_skip_next_white_24dp_1x.png +0 -0
- package/lib/images/ic_skip_previous_white_24dp_1x.png +0 -0
- package/lib/images/ic_toc_white_24dp_1x.png +0 -0
- package/lib/images/ic_volume_off_white_24dp_1x.png +0 -0
- package/lib/images/ic_volume_up_white_24dp_1x.png +0 -0
- package/lib/player4ie8.css +225 -0
- package/package.json +3 -7
- package/server.js +29 -0
- package/src/config/cc.js +56 -0
- package/src/config/i18n.js +101 -0
- package/src/config/options.js +123 -0
- package/src/config/playlist.js +9 -0
- package/src/config/source.js +23 -0
- package/src/config/statuses.js +8 -0
- package/src/config/styles.js +16 -0
- package/src/entity.js +27 -0
- package/src/events.js +5 -0
- package/src/extensions/annotations.js +142 -0
- package/src/extensions/audio-tarcks.js +115 -0
- package/src/extensions/backward.js +45 -0
- package/src/extensions/base.js +73 -0
- package/src/extensions/bottom-next.js +50 -0
- package/src/extensions/bottom-prev.js +50 -0
- package/src/extensions/buffering.js +78 -0
- package/src/extensions/c2pa.js +350 -0
- package/src/extensions/caption-search.js +230 -0
- package/src/extensions/cc.js +874 -0
- package/src/extensions/crawl.js +118 -0
- package/src/extensions/download.js +411 -0
- package/src/extensions/error.js +47 -0
- package/src/extensions/forward.js +44 -0
- package/src/extensions/fullscreen.js +84 -0
- package/src/extensions/help.js +201 -0
- package/src/extensions/helpers/FileSaver.js +157 -0
- package/src/extensions/helpers/clickOpener.js +180 -0
- package/src/extensions/helpers/opener.js +30 -0
- package/src/extensions/helpers/openerHeightChecker.js +13 -0
- package/src/extensions/helpers/popover.js +33 -0
- package/src/extensions/helpers/popoverPosition.js +30 -0
- package/src/extensions/helpers/scrollIntoView.js +9 -0
- package/src/extensions/helpers/storage.js +20 -0
- package/src/extensions/helpers/textContent.js +6 -0
- package/src/extensions/helpers/timeCodeToSeconds.js +44 -0
- package/src/extensions/helpers/transport.js +43 -0
- package/src/extensions/helpers/vtt-loader.js +42 -0
- package/src/extensions/index.js +87 -0
- package/src/extensions/live.js +76 -0
- package/src/extensions/mux.js +57 -0
- package/src/extensions/next-frame.js +44 -0
- package/src/extensions/next.js +48 -0
- package/src/extensions/placeholder.js +241 -0
- package/src/extensions/play.js +102 -0
- package/src/extensions/poster.js +47 -0
- package/src/extensions/prev-frame.js +44 -0
- package/src/extensions/prev.js +48 -0
- package/src/extensions/progress.js +465 -0
- package/src/extensions/resizer.js +37 -0
- package/src/extensions/settings.js +367 -0
- package/src/extensions/theater.js +56 -0
- package/src/extensions/title.js +38 -0
- package/src/extensions/toc.js +334 -0
- package/src/extensions/volume.js +196 -0
- package/src/flash/FlashPlugin.js +301 -0
- package/src/flash/MediaElement.js +361 -0
- package/src/flash/plugins.js +32 -0
- package/src/flash-detector.js +66 -0
- package/src/helpers/$t.js +10 -0
- package/src/helpers/binder.js +11 -0
- package/src/helpers/isAndroid.js +5 -0
- package/src/helpers/isBlackBerry.js +5 -0
- package/src/helpers/isCanvasSupported.js +6 -0
- package/src/helpers/isIE.js +21 -0
- package/src/helpers/isMobile.js +10 -0
- package/src/helpers/isWindows.js +5 -0
- package/src/helpers/isWindowsPhone.js +5 -0
- package/src/helpers/isiOS.js +5 -0
- package/src/html5media.js +19 -0
- package/src/index.js +2 -0
- package/src/logger.js +31 -0
- package/src/microevent.js +65 -0
- package/src/normalize-options.js +139 -0
- package/src/player.js +864 -0
- package/src/players/base.js +209 -0
- package/src/players/flash.js +172 -0
- package/src/players/hls.js +278 -0
- package/src/players/html.js +205 -0
- package/src/players/index.js +59 -0
- package/src/players/shaka.js +219 -0
- package/src/playlist.js +362 -0
- package/src/screenfull.js +121 -0
- package/src/state.js +474 -0
- package/src/static/es5.js +344 -0
- package/src/static/images/Spinner-small.gif +0 -0
- package/src/static/images/close.png +0 -0
- package/src/static/images/ic_check_box_black_24dp_1x.png +0 -0
- package/src/static/images/ic_check_box_outline_blank_black_24dp_1x.png +0 -0
- package/src/static/images/ic_chevron_left_white_24dp_1x.png +0 -0
- package/src/static/images/ic_chevron_right_white_24dp_1x.png +0 -0
- package/src/static/images/ic_closed_caption_white_24dp_1x.png +0 -0
- package/src/static/images/ic_fast_forward_white_24dp_1x.png +0 -0
- package/src/static/images/ic_fast_rewind_white_24dp_1x.png +0 -0
- package/src/static/images/ic_fullscreen_exit_white_24dp_1x.png +0 -0
- package/src/static/images/ic_fullscreen_white_24dp_1x.png +0 -0
- package/src/static/images/ic_hd_white_24dp_1x.png +0 -0
- package/src/static/images/ic_keyboard_arrow_left_black_24dp_1x.png +0 -0
- package/src/static/images/ic_keyboard_arrow_right_black_24dp_1x.png +0 -0
- package/src/static/images/ic_pause_white_24dp_1x.png +0 -0
- package/src/static/images/ic_play_arrow_white_24dp_1x.png +0 -0
- package/src/static/images/ic_refresh_white_24dp_1x.png +0 -0
- package/src/static/images/ic_settings_white_24dp_1x.png +0 -0
- package/src/static/images/ic_skip_next_white_24dp_1x.png +0 -0
- package/src/static/images/ic_skip_previous_white_24dp_1x.png +0 -0
- package/src/static/images/ic_toc_white_24dp_1x.png +0 -0
- package/src/static/images/ic_volume_off_white_24dp_1x.png +0 -0
- package/src/static/images/ic_volume_up_white_24dp_1x.png +0 -0
- package/src/static/player4ie8.css +225 -0
- package/src/styles/bplaylist.css.js +124 -0
- package/src/styles/index.js +1966 -0
- package/src/styles/playlist.css.js +84 -0
- package/src/styles/rplaylist.css.js +98 -0
- package/src/svgs.js +111 -0
- package/src/types/Logger.js +10 -0
- package/src/types/Options.js +179 -0
- package/src/types/Playlist.js +3 -0
- package/src/types/Source.js +28 -0
- package/src/types/State.js +46 -0
- package/src/types/Styles.js +11 -0
- package/src/types/TimeData.js +8 -0
- package/src/types/Translation.js +69 -0
- package/src/utils/absolutizeUrl.js +9 -0
- package/src/utils/addClass.js +9 -0
- package/src/utils/addEvent.js +31 -0
- package/src/utils/addProperty.js +65 -0
- package/src/utils/appendChild.js +14 -0
- package/src/utils/buff2hex.js +5 -0
- package/src/utils/contains.js +33 -0
- package/src/utils/createElement.js +24 -0
- package/src/utils/each.js +34 -0
- package/src/utils/escapeHTML.js +8 -0
- package/src/utils/existy.js +4 -0
- package/src/utils/extend.js +17 -0
- package/src/utils/filter.js +16 -0
- package/src/utils/find.js +11 -0
- package/src/utils/findIndex.js +20 -0
- package/src/utils/first.js +5 -0
- package/src/utils/get.js +19 -0
- package/src/utils/has.js +5 -0
- package/src/utils/hasClass.js +6 -0
- package/src/utils/head.js +11 -0
- package/src/utils/inRange.js +16 -0
- package/src/utils/index.js +73 -0
- package/src/utils/isArray.js +4 -0
- package/src/utils/isBoolean.js +3 -0
- package/src/utils/isElement.js +7 -0
- package/src/utils/isEmpty.js +6 -0
- package/src/utils/isEqual.js +33 -0
- package/src/utils/isEqualBuffer.js +13 -0
- package/src/utils/isFunction.js +3 -0
- package/src/utils/isNotEmpty.js +5 -0
- package/src/utils/isObject.js +5 -0
- package/src/utils/isString.js +9 -0
- package/src/utils/last.js +4 -0
- package/src/utils/map.js +11 -0
- package/src/utils/negate.js +8 -0
- package/src/utils/noop.js +1 -0
- package/src/utils/notExisty.js +5 -0
- package/src/utils/reduce.js +8 -0
- package/src/utils/remove.js +7 -0
- package/src/utils/removeClass.js +8 -0
- package/src/utils/removeEvent.js +7 -0
- package/src/utils/toArray.js +7 -0
- package/src/utils/toggleClass.js +16 -0
- package/src/utils/uidGenerator.js +8 -0
- package/src/utils/upperFirst.js +4 -0
- package/tests/extensions/__snapshots__/download.spec.js.snap +226 -0
- package/tests/extensions/__snapshots__/fullscreen.spec.js.snap +30 -0
- package/tests/extensions/__snapshots__/title.spec.js.snap +16 -0
- package/tests/extensions/download.spec.js +111 -0
- package/tests/extensions/fullscreen.spec.js +56 -0
- package/tests/extensions/title.spec.js +35 -0
- package/tests/mocks/assets/BaseM.mp4 +0 -0
- package/tests/mocks/assets/hls.min.js +5 -0
- package/tests/mocks/assets/styleMock.js +1 -0
- package/tests/mocks/base-player-options.js +47 -0
- package/tests/mocks/sources.js +58 -0
- package/tests/mocks/timedata/cc_en.vtt +171 -0
- package/tests/mocks/timedata/cc_ge.vtt +178 -0
- package/tests/utils/wait.js +1 -0
- package/webpack.config.js +78 -0
package/demo/cc_en.vtt
ADDED
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
WEBVTT
|
|
2
|
+
|
|
3
|
+
00:00:01.490 --> 00:00:08.480
|
|
4
|
+
A country nebula represents one of the final stages in the life of a star...end ofA country nebula represents one of the final stages in the life of a star...end of
|
|
5
|
+
test
|
|
6
|
+
|
|
7
|
+
00:00:08.480 --> 00:00:13.730
|
|
8
|
+
it slide before consumes all of its remaining fuel they start x
|
|
9
|
+
|
|
10
|
+
00:00:13.730 --> 00:00:15.540
|
|
11
|
+
...outer layers.
|
|
12
|
+
|
|
13
|
+
00:00:15.540 --> 00:00:20.270
|
|
14
|
+
These are...excited by the radiation of...and begin to...
|
|
15
|
+
|
|
16
|
+
00:00:20.270 --> 00:00:22.960
|
|
17
|
+
Showing intricate and fascinating structures
|
|
18
|
+
|
|
19
|
+
00:00:22.960 --> 00:00:39.280
|
|
20
|
+
that scientists are still trying to fully understand.
|
|
21
|
+
|
|
22
|
+
00:00:39.280 --> 00:00:39.780
|
|
23
|
+
Inverse.
|
|
24
|
+
|
|
25
|
+
00:00:48.641 --> 00:00:57.521
|
|
26
|
+
Hi, and, welcome to the holocaust but previous episodes we've looked at a lot of
|
|
27
|
+
|
|
28
|
+
00:01:00.220 --> 00:01:05.010
|
|
29
|
+
...villages of planetary nebula and...talked about how they tell us about the
|
|
30
|
+
|
|
31
|
+
00:01:05.010 --> 00:01:09.080
|
|
32
|
+
ultimate fate of our own songs now in this episode we're
|
|
33
|
+
|
|
34
|
+
00:01:09.080 --> 00:01:13.910
|
|
35
|
+
going to take a closer look at just one of the planetary nebula that from
|
|
36
|
+
|
|
37
|
+
00:01:13.910 --> 00:01:19.740
|
|
38
|
+
like many others...in fact...anything in life that planet.
|
|
39
|
+
|
|
40
|
+
00:01:19.740 --> 00:01:22.300
|
|
41
|
+
Known by its catalogue number
|
|
42
|
+
|
|
43
|
+
00:01:22.300 --> 00:01:25.180
|
|
44
|
+
...five one eight nine.
|
|
45
|
+
|
|
46
|
+
00:01:25.180 --> 00:01:32.180
|
|
47
|
+
This planetary nebula might not sound very exciting.
|
|
48
|
+
|
|
49
|
+
00:01:32.180 --> 00:01:34.100
|
|
50
|
+
When it was discovered in the nineteenth-century
|
|
51
|
+
|
|
52
|
+
00:01:35.120 --> 00:01:40.020
|
|
53
|
+
the telescopes of today could benny may count any structure?
|
|
54
|
+
|
|
55
|
+
00:01:40.020 --> 00:01:43.600
|
|
56
|
+
That advances in telescope technology over a century into
|
|
57
|
+
|
|
58
|
+
00:01:43.600 --> 00:01:48.440
|
|
59
|
+
...have borne fruit.
|
|
60
|
+
|
|
61
|
+
00:01:48.440 --> 00:01:52.380
|
|
62
|
+
For a long-time the best image of this object was from the
|
|
63
|
+
|
|
64
|
+
00:01:52.380 --> 00:01:57.190
|
|
65
|
+
europeans seven observatories mc tune which reveals energy
|
|
66
|
+
|
|
67
|
+
00:01:57.190 --> 00:02:01.590
|
|
68
|
+
seen five one eight nine complex...
|
|
69
|
+
|
|
70
|
+
00:02:01.590 --> 00:02:04.770
|
|
71
|
+
Then came...remarkable picture from the eighth
|
|
72
|
+
|
|
73
|
+
00:02:04.770 --> 00:02:11.900
|
|
74
|
+
meters gemini self telescope but if you point...latin.
|
|
75
|
+
|
|
76
|
+
00:02:11.900 --> 00:02:16.190
|
|
77
|
+
Well, if you point hub of it when you get to see some truly spectacular
|
|
78
|
+
|
|
79
|
+
00:02:16.190 --> 00:02:20.070
|
|
80
|
+
detail culture which has never been seen before.
|
|
81
|
+
|
|
82
|
+
00:02:20.070 --> 00:02:24.550
|
|
83
|
+
And, that's of course due to hubble's unique vantage point above the earth's atmosphere
|
|
84
|
+
|
|
85
|
+
00:02:25.850 --> 00:02:30.410
|
|
86
|
+
now if we zooming close which we can...hubble's high-resolution
|
|
87
|
+
|
|
88
|
+
00:02:30.410 --> 00:02:35.940
|
|
89
|
+
we start seeing these very dense not in the clouds of gas.
|
|
90
|
+
|
|
91
|
+
00:02:35.940 --> 00:02:43.480
|
|
92
|
+
Problem...before most famously in the helix maybe...
|
|
93
|
+
|
|
94
|
+
00:02:43.480 --> 00:02:46.360
|
|
95
|
+
Now what's going on here is that the radiation from the dying
|
|
96
|
+
|
|
97
|
+
00:02:46.360 --> 00:02:50.240
|
|
98
|
+
...carving these notes into shape forming these
|
|
99
|
+
|
|
100
|
+
00:02:50.240 --> 00:02:54.410
|
|
101
|
+
growing file wave like patterns much like water flowing around
|
|
102
|
+
|
|
103
|
+
00:02:54.410 --> 00:03:02.280
|
|
104
|
+
the role industry and these are all pointing towards the center of the nebula.
|
|
105
|
+
|
|
106
|
+
00:03:02.280 --> 00:03:03.860
|
|
107
|
+
The notes and energy
|
|
108
|
+
|
|
109
|
+
00:03:03.860 --> 00:03:10.870
|
|
110
|
+
...five one eight nine reminder of just...being.
|
|
111
|
+
|
|
112
|
+
00:03:10.870 --> 00:03:15.380
|
|
113
|
+
They might look insignificant here but they are actually a similar
|
|
114
|
+
|
|
115
|
+
00:03:15.380 --> 00:03:19.910
|
|
116
|
+
signs to the intelligence services system.
|
|
117
|
+
|
|
118
|
+
00:03:19.910 --> 00:03:24.660
|
|
119
|
+
This star at the center of the nebula...whites tool.
|
|
120
|
+
|
|
121
|
+
00:03:24.660 --> 00:03:27.610
|
|
122
|
+
Is far too small to see is anything other than a
|
|
123
|
+
|
|
124
|
+
00:03:27.610 --> 00:03:34.490
|
|
125
|
+
point of light even though it is roughly the size of the earth?
|
|
126
|
+
|
|
127
|
+
00:03:34.490 --> 00:03:36.020
|
|
128
|
+
And, you see a five one eight nine
|
|
129
|
+
|
|
130
|
+
00:03:36.020 --> 00:03:40.780
|
|
131
|
+
spiral shape is perhaps its most obvious feature leading to its nickname
|
|
132
|
+
|
|
133
|
+
00:03:40.780 --> 00:03:45.750
|
|
134
|
+
...this spiral planetary nebula the structures reminiscent of water coming
|
|
135
|
+
|
|
136
|
+
00:03:45.750 --> 00:03:50.380
|
|
137
|
+
from lawn sprinkler is probably due to the start rotating and what
|
|
138
|
+
|
|
139
|
+
00:03:50.380 --> 00:03:55.420
|
|
140
|
+
willing as...matter similar structures have been seen before
|
|
141
|
+
|
|
142
|
+
00:03:55.420 --> 00:04:00.080
|
|
143
|
+
especially in planetary maybe with binary stars at the sentence?
|
|
144
|
+
|
|
145
|
+
00:04:00.080 --> 00:04:03.460
|
|
146
|
+
But, whether there are two stars or just the one at the center of engine
|
|
147
|
+
|
|
148
|
+
00:04:03.460 --> 00:04:08.150
|
|
149
|
+
...one eight nine remains an open question so it
|
|
150
|
+
|
|
151
|
+
00:04:08.150 --> 00:04:12.810
|
|
152
|
+
shape and the signs that lies behind it remain a fascinating area for
|
|
153
|
+
|
|
154
|
+
00:04:12.810 --> 00:04:18.980
|
|
155
|
+
astronomers to study this is doctor...signing...for the holocaust once again
|
|
156
|
+
|
|
157
|
+
00:04:18.980 --> 00:04:56.830
|
|
158
|
+
...surprise us beyond our wildest imagination.
|
|
159
|
+
|
|
160
|
+
00:04:56.830 --> 00:05:01.740
|
|
161
|
+
Now that you've caught up with hubble make sure to get the latest from the ground to the east
|
|
162
|
+
|
|
163
|
+
00:05:01.740 --> 00:05:05.020
|
|
164
|
+
...highlights the best of the european southern observatory and
|
|
165
|
+
|
|
166
|
+
00:05:05.020 --> 00:05:09.560
|
|
167
|
+
it's powerful telescopes that observed from high in the chilean andy's at
|
|
168
|
+
|
|
169
|
+
00:05:09.560 --> 00:05:13.740
|
|
170
|
+
the southern hemisphere is best known sites for astronomical observations.
|
|
171
|
+
|
package/demo/cc_ge.vtt
ADDED
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
WEBVTT
|
|
2
|
+
|
|
3
|
+
00:00:00.000 --> 00:00:04.000
|
|
4
|
+
Ein planetarischer Nebel ist die Endphase
|
|
5
|
+
|
|
6
|
+
00:00:04.000 --> 00:00:06.000
|
|
7
|
+
im Leben eines Sterns wie unserer Sonne.
|
|
8
|
+
|
|
9
|
+
00:00:06.000 --> 00:00:11.000
|
|
10
|
+
Kurz vor dem Ende seiner Lebensdauer, bevor er all seinen restlichen Kraftstoff verbraucht hat,
|
|
11
|
+
|
|
12
|
+
00:00:11.000 --> 00:00:14.000
|
|
13
|
+
stößt ein Stern seine äußeren Schichten ab.
|
|
14
|
+
|
|
15
|
+
00:00:14.000 --> 00:00:17.000
|
|
16
|
+
Diese werden dann durch die Strahlung des Sterns angeregt
|
|
17
|
+
|
|
18
|
+
00:00:17.000 --> 00:00:22.000
|
|
19
|
+
und beginnen zu leuchten, dabei zeigen sie komplizierte und faszinierende Strukturen,
|
|
20
|
+
|
|
21
|
+
00:00:22.000 --> 00:00:26.000
|
|
22
|
+
wobei Wissenschaftler immer noch versuchen sie vollständig zu verstehen..
|
|
23
|
+
|
|
24
|
+
00:00:42.000 --> 00:00:48.000
|
|
25
|
+
Hubblecast Folge 61: eine Reise durch NGC 5189
|
|
26
|
+
|
|
27
|
+
00:00:48.000 --> 00:00:51.000
|
|
28
|
+
Präsentiert von Dr J, alias Dr. Joe Liske
|
|
29
|
+
|
|
30
|
+
00:00:55.000 --> 00:00:57.000
|
|
31
|
+
Hallo und Willkommen zum Hubblecast.
|
|
32
|
+
|
|
33
|
+
00:00:57.000 --> 00:01:02.000
|
|
34
|
+
In früheren Folgen haben wir viele Hubble Bilder von planetarischen Nebeln gesehen
|
|
35
|
+
|
|
36
|
+
00:01:02.000 --> 00:01:07.000
|
|
37
|
+
und wir haben darüber gesprochen, was sie uns über das endgültige Schicksal unserer eigenen Sonne erzählen.
|
|
38
|
+
|
|
39
|
+
00:01:07.000 --> 00:01:11.000
|
|
40
|
+
In dieser Folge werden wir einen genaueren Blick auf nur einen von ihnen werfen.
|
|
41
|
+
|
|
42
|
+
00:01:11.000 --> 00:01:14.000
|
|
43
|
+
Ein planetarischer Nebel sieht, wie auch viele andere,
|
|
44
|
+
|
|
45
|
+
00:01:14.000 --> 00:01:17.000
|
|
46
|
+
in der Tat nicht so aus wie ein Planet.
|
|
47
|
+
|
|
48
|
+
00:01:19.000 --> 00:01:24.000
|
|
49
|
+
Bekannt durch seine Katalognummer NGC 5189
|
|
50
|
+
|
|
51
|
+
00:01:24.000 --> 00:01:29.000
|
|
52
|
+
klingt dieser planetarische Nebel vielleicht nicht sehr spannend.
|
|
53
|
+
|
|
54
|
+
00:01:32.000 --> 00:01:34.000
|
|
55
|
+
Als er im 19. Jahrhundert entdeckt wurde,
|
|
56
|
+
|
|
57
|
+
00:01:34.000 --> 00:01:39.000
|
|
58
|
+
konnten die damaligen Teleskope kaum eine Struktur entdecken.
|
|
59
|
+
|
|
60
|
+
00:01:39.000 --> 00:01:45.000
|
|
61
|
+
Aber Fortschritte in der Teleskop-Technik über 1.5 Jahrhunderte haben Früchte getragen.
|
|
62
|
+
|
|
63
|
+
00:01:48.000 --> 00:01:52.000
|
|
64
|
+
Für eine lange Zeit war das beste Bild des Objekts
|
|
65
|
+
|
|
66
|
+
00:01:52.000 --> 00:01:55.000
|
|
67
|
+
vom NTT der Europäischen Südsternwarte,
|
|
68
|
+
|
|
69
|
+
00:01:55.000 --> 00:02:00.000
|
|
70
|
+
das die komplexe Spiralform von NGC 5189 zeigte.
|
|
71
|
+
|
|
72
|
+
00:02:01.000 --> 00:02:06.000
|
|
73
|
+
Dann kam ein bemerkenswertes Bild vom 8-Meter-Gemini-Süd-Teleskop.
|
|
74
|
+
|
|
75
|
+
00:02:06.000 --> 00:02:09.000
|
|
76
|
+
Aber wenn Sie Hubble darauf ausrichten ...
|
|
77
|
+
|
|
78
|
+
00:02:11.000 --> 00:02:16.000
|
|
79
|
+
Nun, wenn Sie Hubble einsetzen, dann bekommen Sie einige wirklich spektakuläre Details zu sehen
|
|
80
|
+
|
|
81
|
+
00:02:16.000 --> 00:02:19.000
|
|
82
|
+
von denen viele noch nie zuvor gesehen wurden.
|
|
83
|
+
|
|
84
|
+
00:02:19.000 --> 00:02:22.000
|
|
85
|
+
Und das ist natürlich nur wegen des einzigartigen Hubble- Aussichtspunkts
|
|
86
|
+
|
|
87
|
+
00:02:22.000 --> 00:02:24.000
|
|
88
|
+
oberhalb der Erdatmosphäre möglich.
|
|
89
|
+
|
|
90
|
+
00:02:26.000 --> 00:02:29.000
|
|
91
|
+
Wenn wir heranzoomen, was dank der hohen Auflösung von Hubble tun können,
|
|
92
|
+
|
|
93
|
+
00:02:29.000 --> 00:02:33.000
|
|
94
|
+
dann sehen wir diese sehr dichten Knoten in den Wolken aus Gas.
|
|
95
|
+
|
|
96
|
+
00:02:36.000 --> 00:02:40.000
|
|
97
|
+
Hubble hat diese schon zuvor gesehen, am bekanntesten im Helix-Nebel.
|
|
98
|
+
|
|
99
|
+
00:02:42.000 --> 00:02:46.000
|
|
100
|
+
Nun, das was hier passiert ist, dass die Strahlung aus dem sterbenden Stern
|
|
101
|
+
|
|
102
|
+
00:02:46.000 --> 00:02:49.000
|
|
103
|
+
diese Knoten ausformt
|
|
104
|
+
|
|
105
|
+
00:02:49.000 --> 00:02:52.000
|
|
106
|
+
und diese leuchtenden bogen-wellenartigen Muster ausbildet,
|
|
107
|
+
|
|
108
|
+
00:02:52.000 --> 00:02:56.000
|
|
109
|
+
ähnlich wie Wasser, das um einen Felsen in einem Bach fließt.
|
|
110
|
+
|
|
111
|
+
00:02:56.000 --> 00:02:59.000
|
|
112
|
+
Und diese weisen alle in Richtung des Zentrums des Nebels.
|
|
113
|
+
|
|
114
|
+
00:03:02.000 --> 00:03:09.000
|
|
115
|
+
Die Knoten in NGC 5189 erinnern daran, wie groß planetarische Nebel sind.
|
|
116
|
+
|
|
117
|
+
00:03:09.000 --> 00:03:12.000
|
|
118
|
+
Sie könnten unbedeutend wirken
|
|
119
|
+
|
|
120
|
+
00:03:12.000 --> 00:03:18.000
|
|
121
|
+
aber sie haben tatsächlich eine ähnliche Größe wie das gesamte Sonnensystem.
|
|
122
|
+
|
|
123
|
+
00:03:20.000 --> 00:03:23.000
|
|
124
|
+
Der Stern im Zentrum des Nebels, ein dichter weißer Zwerg,
|
|
125
|
+
|
|
126
|
+
00:03:23.000 --> 00:03:28.000
|
|
127
|
+
ist viel zu klein, um als etwas anderes als ein Lichtpunkt gesehen zu werden,
|
|
128
|
+
|
|
129
|
+
00:03:28.000 --> 00:03:32.000
|
|
130
|
+
obwohl er in etwa die Größe der Erde hat.
|
|
131
|
+
|
|
132
|
+
00:03:34.000 --> 00:03:39.000
|
|
133
|
+
Die Spiralform von NGC 5189 ist vielleicht sein auffälligstes Merkmal
|
|
134
|
+
|
|
135
|
+
00:03:39.000 --> 00:03:42.000
|
|
136
|
+
was zu seinem Spitznamen "der planetarische Spiral-Nebel " geführt hat.
|
|
137
|
+
|
|
138
|
+
00:03:44.000 --> 00:03:46.000
|
|
139
|
+
Die Struktur erinnert an Wasser, das aus einem Rasensprenger schießt
|
|
140
|
+
|
|
141
|
+
00:03:46.000 --> 00:03:52.000
|
|
142
|
+
und sie ist wahrscheinlich wegen der Sternrotation und seines Taumelns enstanden, während der Stern Materie ausstößt.
|
|
143
|
+
|
|
144
|
+
00:03:52.000 --> 00:03:54.000
|
|
145
|
+
Ähnliche Strukturen wurden schon vorher gesehen,
|
|
146
|
+
|
|
147
|
+
00:03:54.000 --> 00:03:59.000
|
|
148
|
+
vor allem in planetarischen Nebeln mit einem Doppelsternsystem in ihren Zentren
|
|
149
|
+
|
|
150
|
+
00:03:59.000 --> 00:04:04.000
|
|
151
|
+
aber ob es zwei Sterne oder nur ein einzelner Stern im Zentrum von NGC 5189 ist,
|
|
152
|
+
|
|
153
|
+
00:04:04.000 --> 00:04:06.000
|
|
154
|
+
bleibt eine offene Frage.
|
|
155
|
+
|
|
156
|
+
00:04:06.000 --> 00:04:10.000
|
|
157
|
+
Und so bleibt seine Form und die Physik, die dahinter steckt
|
|
158
|
+
|
|
159
|
+
00:04:10.000 --> 00:04:14.000
|
|
160
|
+
ein faszinierendes Arbeitsgebiet für Astronomen.
|
|
161
|
+
|
|
162
|
+
00:04:15.000 --> 00:04:17.000
|
|
163
|
+
Dies ist Dr J am Ende des Hubblecast.
|
|
164
|
+
|
|
165
|
+
00:04:17.000 --> 00:04:22.000
|
|
166
|
+
Wieder einmal hat uns die Natur jenseits unserer spekulativsten Vorstellungen überrascht
|
|
167
|
+
|
|
168
|
+
00:04:22.000 --> 00:04:25.000
|
|
169
|
+
Hubblecast wird durch die ESA / Hubble am European Southern Observatory in Deutschland produziert.
|
|
170
|
+
|
|
171
|
+
00:04:28.000 --> 00:04:31.000
|
|
172
|
+
Die Hubble-Mission ist ein Projekt internationaler Zusammenarbeit zwischen der NASA und der Europäischen Weltraumorganisation.
|
|
173
|
+
|
|
174
|
+
00:04:34.000 --> 00:04:35.000
|
|
175
|
+
www.spacetelescope.org
|
|
176
|
+
|
|
177
|
+
00:04:35.000 --> 00:04:38.000
|
|
178
|
+
Gestaltet: ESA / Hubble. Übersetzung: Sternwarte am Wallgarten; Gifhorn
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
WEBVTT
|
|
2
|
+
|
|
3
|
+
Chapter1
|
|
4
|
+
00:00:02.960 --> 00:00:09.280
|
|
5
|
+
1
|
|
6
|
+
|
|
7
|
+
Chapter2
|
|
8
|
+
00:00:12.960 --> 00:00:13.280
|
|
9
|
+
2
|
|
10
|
+
|
|
11
|
+
Chapter3
|
|
12
|
+
00:00:15.960 --> 00:00:16.280
|
|
13
|
+
3
|
|
14
|
+
|
|
15
|
+
Chapter4
|
|
16
|
+
00:00:17.960 --> 00:00:18.280
|
|
17
|
+
4
|
|
18
|
+
|
|
19
|
+
Chapter5
|
|
20
|
+
00:00:20.960 --> 00:00:21.280
|
|
21
|
+
5
|
|
22
|
+
|
|
23
|
+
Chapter6
|
|
24
|
+
00:00:22.960 --> 00:00:23.280
|
|
25
|
+
6
|
|
26
|
+
|
|
27
|
+
Chapter7
|
|
28
|
+
00:00:25.960 --> 00:00:26.280
|
|
29
|
+
7
|
|
30
|
+
|
|
31
|
+
Chapter8
|
|
32
|
+
00:00:28.960 --> 00:00:29.280
|
|
33
|
+
8
|
|
34
|
+
|
|
35
|
+
Chapter9
|
|
36
|
+
00:00:31.960 --> 00:00:32.280
|
|
37
|
+
9
|
|
38
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "123",
|
|
4
|
+
"from": 2.96,
|
|
5
|
+
"to": 4,
|
|
6
|
+
"text": "text1",
|
|
7
|
+
"title": "title1"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"id": "124",
|
|
11
|
+
"from": 4.2,
|
|
12
|
+
"to": 6,
|
|
13
|
+
"text": "text2",
|
|
14
|
+
"title": "title2"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "125",
|
|
18
|
+
"from": 10,
|
|
19
|
+
"to": 12,
|
|
20
|
+
"text": "text3",
|
|
21
|
+
"title": "title3"
|
|
22
|
+
}
|
|
23
|
+
]
|