@latest-thinking/lt-player 1.1.0 → 1.2.0-a
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/ README.md +126 -0
- package/dist/css/lt-player-main.css +1 -1
- package/dist/css/lt-player-main.css.map +1 -1
- package/dist/js/lt-player-main.js +1 -1
- package/dist/js/lt-player-main.js.map +1 -1
- package/examples/basic.html +35 -0
- package/examples/lt-page-with-player.html +3529 -0
- package/examples/lt-page-with-player_files/Weiskopf_Coverphoto.jpg +0 -0
- package/examples/lt-page-with-player_files/ajax-progress.module.css +49 -0
- package/examples/lt-page-with-player_files/align.module.css +32 -0
- package/examples/lt-page-with-player_files/announce.js +49 -0
- package/examples/lt-page-with-player_files/autocomplete-loading.module.css +22 -0
- package/examples/lt-page-with-player_files/autocomplete.css +16 -0
- package/examples/lt-page-with-player_files/bootstrap.css +22691 -0
- package/examples/lt-page-with-player_files/clearfix.module.css +15 -0
- package/examples/lt-page-with-player_files/container-inline.module.css +16 -0
- package/examples/lt-page-with-player_files/cookiesjsr.min.css +10 -0
- package/examples/lt-page-with-player_files/core.css +97 -0
- package/examples/lt-page-with-player_files/details.module.css +10 -0
- package/examples/lt-page-with-player_files/fieldgroup.module.css +9 -0
- package/examples/lt-page-with-player_files/hidden.module.css +53 -0
- package/examples/lt-page-with-player_files/himme-alexander-beyond_0.jpg +0 -0
- package/examples/lt-page-with-player_files/item-list.module.css +19 -0
- package/examples/lt-page-with-player_files/js.module.css +22 -0
- package/examples/lt-page-with-player_files/latest_thinking.style.css +6496 -0
- package/examples/lt-page-with-player_files/logo-small.png +0 -0
- package/examples/lt-page-with-player_files/menu.css +64 -0
- package/examples/lt-page-with-player_files/nowrap.module.css +8 -0
- package/examples/lt-page-with-player_files/paragraphs.unpublished.css +3 -0
- package/examples/lt-page-with-player_files/position-container.module.css +8 -0
- package/examples/lt-page-with-player_files/progress.module.css +51 -0
- package/examples/lt-page-with-player_files/radix.style.css +1 -0
- package/examples/lt-page-with-player_files/reset-appearance.module.css +15 -0
- package/examples/lt-page-with-player_files/resize.module.css +21 -0
- package/examples/lt-page-with-player_files/search_api_autocomplete.css +41 -0
- package/examples/lt-page-with-player_files/sticky-header.module.css +13 -0
- package/examples/lt-page-with-player_files/system-status-counter.css +30 -0
- package/examples/lt-page-with-player_files/system-status-report-counters.css +27 -0
- package/examples/lt-page-with-player_files/system-status-report-general-info.css +14 -0
- package/examples/lt-page-with-player_files/tabledrag.module.css +98 -0
- package/examples/lt-page-with-player_files/tablesort.module.css +19 -0
- package/examples/lt-page-with-player_files/theme.css +446 -0
- package/examples/lt-page-with-player_files/thumbnail_MPI_CBS_Eingangsbereich.jpg +0 -0
- package/examples/lt-page-with-player_files/tree-child.module.css +18 -0
- package/examples/lt-page-with-player_files/widget-min.js +10 -0
- package/examples/lt-website.html +76 -0
- package/examples/portrait-with-subtitles.html +81 -0
- package/examples/samples/vtt/Pahl-Kerstin-Maria-MAIN-20230320.vtt +765 -0
- package/examples/samples/vtt/Sobolev-Anton-Subtitles-20230518_0.vtt +352 -0
- package/examples/samples/vtt/demo.vtt +7 -0
- package/package.json +1 -1
- package/src/assets/sass/abstracts/_mixins.scss +1 -1
- package/src/assets/sass/abstracts/_variables.scss +1 -1
- package/src/assets/sass/app.scss +19 -0
- package/src/assets/sass/components/_all.scss +1 -1
- package/src/assets/sass/components/_loader.scss +187 -0
- package/src/assets/sass/components/_modal.scss +6 -0
- package/src/assets/sass/core/_player.scss +23 -5
- package/src/assets/sass/sections/_additional-info.scss +1 -1
- package/src/assets/sass/sections/_control.scss +0 -1
- package/src/assets/sass/sections/_poster.scss +1 -0
- package/src/assets/sass/sections/_settings.scss +36 -53
- package/src/assets/sass/sections/_subtitles.scss +78 -23
- package/src/assets/sass/sections/controllers/_botom.scss +59 -36
- package/src/assets/sass/sections/controllers/_notification-rewind-forward.scss +29 -14
- package/src/assets/sass/sections/controllers/_top.scss +1 -1
- package/src/components/LTPlayerDevMethode.ts +106 -84
- package/src/components/LTPlayerManager.ts +16 -0
- package/src/components/LTPlayerSettingsManager.ts +117 -0
- package/src/components/LTPlayerSetup.ts +3 -10
- package/src/components/LTPlayerStatusFeedback.ts +76 -0
- package/src/components/LTPlayerStorage.ts +58 -0
- package/src/components/LTPlayerType.ts +10 -2
- package/src/components/LTPlayerUpdate.ts +61 -0
- package/src/components/captions/LTPlayerCaptions.ts +80 -0
- package/src/components/config/LTPlayerConfig.ts +43 -0
- package/src/components/config/LTPlayerConfigProcessor.ts +110 -56
- package/src/components/controls/LTPlayerChapters.ts +8 -4
- package/src/components/controls/LTPlayerControls.ts +2 -0
- package/src/components/controls/LTPlayerControlsEvents.ts +200 -49
- package/src/components/controls/settings/LTPlayerCommonSettingsControllers.ts +9 -1
- package/src/components/controls/settings/LTPlayerDesktopSettingsControllers.ts +17 -14
- package/src/components/controls/settings/LTPlayerMobileSettingsControllers.ts +50 -44
- package/src/components/events/LTPlayer.ts +24 -21
- package/src/components/events/LTPlayerCommon.ts +94 -20
- package/src/components/events/LTPlayerDesktop.ts +21 -7
- package/src/components/events/LTPlayerMobile.ts +22 -10
- package/src/global/controllers/LTPlayerController.ts +7 -0
- package/src/services/Helper.ts +6 -1
- package/src/services/ResizeService.ts +35 -30
- package/src/services/TemplateService.ts +7 -0
- package/src/views/additionalInfo.handlebars +18 -18
- package/src/views/controls.handlebars +14 -3
- package/src/views/poster.handlebars +2 -2
- package/src/views/settings.handlebars +1 -1
- package/src/views/settings.mobile.handlebars +22 -0
- package/src/views/template.handlebars +4 -1
- package/src/assets/sass/components/_spinner.scss +0 -46
|
@@ -0,0 +1,765 @@
|
|
|
1
|
+
WEBVTT - This file was automatically generated by VIMEO
|
|
2
|
+
|
|
3
|
+
0
|
|
4
|
+
00:00:10.590 --> 00:00:13.410
|
|
5
|
+
How do idea spread? This sounds very simple,
|
|
6
|
+
|
|
7
|
+
1
|
|
8
|
+
00:00:13.550 --> 00:00:15.530
|
|
9
|
+
but it's actually a really complex question.
|
|
10
|
+
|
|
11
|
+
2
|
|
12
|
+
00:00:15.840 --> 00:00:20.810
|
|
13
|
+
Many of us casually speak of the discrepancies that often occur between
|
|
14
|
+
|
|
15
|
+
3
|
|
16
|
+
00:00:20.950 --> 00:00:24.490
|
|
17
|
+
theory and practice or thinking and doing.
|
|
18
|
+
|
|
19
|
+
4
|
|
20
|
+
00:00:25.160 --> 00:00:28.090
|
|
21
|
+
Very often abstracts concepts are very interesting,
|
|
22
|
+
|
|
23
|
+
5
|
|
24
|
+
00:00:28.590 --> 00:00:32.630
|
|
25
|
+
but they're not made to be implemented one by one. Rather,
|
|
26
|
+
|
|
27
|
+
6
|
|
28
|
+
00:00:32.860 --> 00:00:34.150
|
|
29
|
+
they can be fooled for thought,
|
|
30
|
+
|
|
31
|
+
7
|
|
32
|
+
00:00:34.660 --> 00:00:38.230
|
|
33
|
+
they can be springboards for further elaborations,
|
|
34
|
+
|
|
35
|
+
8
|
|
36
|
+
00:00:38.610 --> 00:00:43.510
|
|
37
|
+
but they need to be persuasively packaged and made adaptable to become
|
|
38
|
+
|
|
39
|
+
9
|
|
40
|
+
00:00:43.580 --> 00:00:45.550
|
|
41
|
+
part of practical operations.
|
|
42
|
+
|
|
43
|
+
10
|
|
44
|
+
00:00:46.210 --> 00:00:50.830
|
|
45
|
+
I'm researching how thoughts and theories and especially the those that were
|
|
46
|
+
|
|
47
|
+
11
|
|
48
|
+
00:00:51.020 --> 00:00:55.750
|
|
49
|
+
generated from investigations in into society and the human
|
|
50
|
+
|
|
51
|
+
12
|
|
52
|
+
00:00:55.750 --> 00:01:00.110
|
|
53
|
+
condition were circulated in the world and how they were taken up
|
|
54
|
+
|
|
55
|
+
13
|
|
56
|
+
00:01:00.610 --> 00:01:04.270
|
|
57
|
+
by this. I want to find out which actual ideas,
|
|
58
|
+
|
|
59
|
+
14
|
|
60
|
+
00:01:04.920 --> 00:01:09.740
|
|
61
|
+
which theories which finding had a concrete impact
|
|
62
|
+
|
|
63
|
+
15
|
|
64
|
+
00:01:10.080 --> 00:01:13.580
|
|
65
|
+
by becoming implemented in, for instance, that legislation,
|
|
66
|
+
|
|
67
|
+
16
|
|
68
|
+
00:01:13.930 --> 00:01:18.060
|
|
69
|
+
institutional infrastructures, or political decision makings.
|
|
70
|
+
|
|
71
|
+
17
|
|
72
|
+
00:01:18.600 --> 00:01:19.660
|
|
73
|
+
In my current research,
|
|
74
|
+
|
|
75
|
+
18
|
|
76
|
+
00:01:20.000 --> 00:01:24.060
|
|
77
|
+
I'm focusing on an idea that does not appear very scientific today,
|
|
78
|
+
|
|
79
|
+
19
|
|
80
|
+
00:01:24.520 --> 00:01:27.420
|
|
81
|
+
but which was very much so at the end of the 18th century.
|
|
82
|
+
|
|
83
|
+
20
|
|
84
|
+
00:01:28.160 --> 00:01:31.340
|
|
85
|
+
The idea of happiness, how people can be made happy,
|
|
86
|
+
|
|
87
|
+
21
|
|
88
|
+
00:01:32.290 --> 00:01:36.780
|
|
89
|
+
what conditions produce happiness At the end of the 18th century,
|
|
90
|
+
|
|
91
|
+
22
|
|
92
|
+
00:01:37.070 --> 00:01:41.100
|
|
93
|
+
especially in Britain, and a very influential idea took hold,
|
|
94
|
+
|
|
95
|
+
23
|
|
96
|
+
00:01:41.150 --> 00:01:45.060
|
|
97
|
+
which we nowadays connect with utilitarianism,
|
|
98
|
+
|
|
99
|
+
24
|
|
100
|
+
00:01:45.600 --> 00:01:48.540
|
|
101
|
+
and it is called the Greatest Happiness principle.
|
|
102
|
+
|
|
103
|
+
25
|
|
104
|
+
00:01:49.010 --> 00:01:53.880
|
|
105
|
+
That means that a country's success, a society's success,
|
|
106
|
+
|
|
107
|
+
26
|
|
108
|
+
00:01:54.970 --> 00:01:59.270
|
|
109
|
+
is measured by the quantum of happiness that is present
|
|
110
|
+
|
|
111
|
+
27
|
|
112
|
+
00:02:00.130 --> 00:02:00.963
|
|
113
|
+
in society.
|
|
114
|
+
|
|
115
|
+
28
|
|
116
|
+
00:02:01.490 --> 00:02:04.990
|
|
117
|
+
The second half of the 18th century is also sometimes called the age of
|
|
118
|
+
|
|
119
|
+
29
|
|
120
|
+
00:02:04.990 --> 00:02:07.310
|
|
121
|
+
sensibility, because in large number of people,
|
|
122
|
+
|
|
123
|
+
30
|
|
124
|
+
00:02:07.570 --> 00:02:12.550
|
|
125
|
+
not only intellectuals and the reading public, but economists, politicians,
|
|
126
|
+
|
|
127
|
+
31
|
|
128
|
+
00:02:13.030 --> 00:02:15.030
|
|
129
|
+
religious figures, even statisticians,
|
|
130
|
+
|
|
131
|
+
32
|
|
132
|
+
00:02:15.460 --> 00:02:20.390
|
|
133
|
+
took a very active interest in what produced feelings and how they
|
|
134
|
+
|
|
135
|
+
33
|
|
136
|
+
00:02:20.390 --> 00:02:21.390
|
|
137
|
+
could impact it.
|
|
138
|
+
|
|
139
|
+
34
|
|
140
|
+
00:02:21.770 --> 00:02:25.630
|
|
141
|
+
In order to find out what research findings actually impacted
|
|
142
|
+
|
|
143
|
+
35
|
|
144
|
+
00:02:26.540 --> 00:02:30.950
|
|
145
|
+
political decision making, social reform, movements, all legislations,
|
|
146
|
+
|
|
147
|
+
36
|
|
148
|
+
00:02:31.650 --> 00:02:36.630
|
|
149
|
+
one has to look very specifically at how a discussion materialized
|
|
150
|
+
|
|
151
|
+
37
|
|
152
|
+
00:02:36.930 --> 00:02:39.950
|
|
153
|
+
and how it was then taken up by particular actors.
|
|
154
|
+
|
|
155
|
+
38
|
|
156
|
+
00:02:40.410 --> 00:02:42.790
|
|
157
|
+
The discussion on feeling was present in many fields,
|
|
158
|
+
|
|
159
|
+
39
|
|
160
|
+
00:02:43.410 --> 00:02:45.350
|
|
161
|
+
and there was for instance, uh,
|
|
162
|
+
|
|
163
|
+
40
|
|
164
|
+
00:02:45.570 --> 00:02:49.710
|
|
165
|
+
debate about whether peasants were particularly happy because they lived in
|
|
166
|
+
|
|
167
|
+
41
|
|
168
|
+
00:02:49.710 --> 00:02:50.510
|
|
169
|
+
remote villages,
|
|
170
|
+
|
|
171
|
+
42
|
|
172
|
+
00:02:50.510 --> 00:02:54.390
|
|
173
|
+
or particularly unhappy because they were disconnected from the large and urban
|
|
174
|
+
|
|
175
|
+
43
|
|
176
|
+
00:02:54.390 --> 00:02:55.223
|
|
177
|
+
areas.
|
|
178
|
+
|
|
179
|
+
44
|
|
180
|
+
00:02:55.410 --> 00:03:00.220
|
|
181
|
+
But there was one specific case in particular where the matter of feeling
|
|
182
|
+
|
|
183
|
+
45
|
|
184
|
+
00:03:00.640 --> 00:03:04.690
|
|
185
|
+
had a wider significance and that were children.
|
|
186
|
+
|
|
187
|
+
46
|
|
188
|
+
00:03:05.820 --> 00:03:09.460
|
|
189
|
+
Children were increasingly perceived as the future of the country, and as such,
|
|
190
|
+
|
|
191
|
+
47
|
|
192
|
+
00:03:09.560 --> 00:03:14.330
|
|
193
|
+
the state of their feeling was something that would impact the country in the
|
|
194
|
+
|
|
195
|
+
48
|
|
196
|
+
00:03:14.330 --> 00:03:15.163
|
|
197
|
+
future.
|
|
198
|
+
|
|
199
|
+
49
|
|
200
|
+
00:03:19.410 --> 00:03:20.243
|
|
201
|
+
In my research,
|
|
202
|
+
|
|
203
|
+
50
|
|
204
|
+
00:03:20.610 --> 00:03:24.990
|
|
205
|
+
I'm employing a combination of methods of semantic with sociological
|
|
206
|
+
|
|
207
|
+
51
|
|
208
|
+
00:03:25.470 --> 00:03:30.430
|
|
209
|
+
analysis and of qualitative with quantitative analysis. In the first step,
|
|
210
|
+
|
|
211
|
+
52
|
|
212
|
+
00:03:30.550 --> 00:03:32.430
|
|
213
|
+
I was looking at the findings,
|
|
214
|
+
|
|
215
|
+
53
|
|
216
|
+
00:03:32.550 --> 00:03:37.430
|
|
217
|
+
findings of what one could would nowadays call research that was
|
|
218
|
+
|
|
219
|
+
54
|
|
220
|
+
00:03:37.540 --> 00:03:41.790
|
|
221
|
+
generated in various fields in society, not just in science,
|
|
222
|
+
|
|
223
|
+
55
|
|
224
|
+
00:03:42.010 --> 00:03:45.630
|
|
225
|
+
but also in moral philosophy in economy,
|
|
226
|
+
|
|
227
|
+
56
|
|
228
|
+
00:03:46.130 --> 00:03:50.030
|
|
229
|
+
but also in parts of what we nowadays would call technology.
|
|
230
|
+
|
|
231
|
+
57
|
|
232
|
+
00:03:50.440 --> 00:03:54.950
|
|
233
|
+
After having had a quite a clear overview of
|
|
234
|
+
|
|
235
|
+
58
|
|
236
|
+
00:03:55.500 --> 00:03:59.910
|
|
237
|
+
what the consensus or the state of the art on the research on feeling was,
|
|
238
|
+
|
|
239
|
+
59
|
|
240
|
+
00:04:00.470 --> 00:04:03.950
|
|
241
|
+
I turned to the political issues that were pressing at the time,
|
|
242
|
+
|
|
243
|
+
60
|
|
244
|
+
00:04:04.690 --> 00:04:08.670
|
|
245
|
+
and through the use of digitized sources, newspapers,
|
|
246
|
+
|
|
247
|
+
61
|
|
248
|
+
00:04:08.740 --> 00:04:12.350
|
|
249
|
+
institutional minutes, statistical analysis, cataloged images,
|
|
250
|
+
|
|
251
|
+
62
|
|
252
|
+
00:04:13.150 --> 00:04:18.110
|
|
253
|
+
I tried to find out if there were particular political issues that were
|
|
254
|
+
|
|
255
|
+
63
|
|
256
|
+
00:04:18.390 --> 00:04:22.670
|
|
257
|
+
frequently associated with emotions or emotion research,
|
|
258
|
+
|
|
259
|
+
64
|
|
260
|
+
00:04:23.450 --> 00:04:25.590
|
|
261
|
+
and there were were few that I could identify,
|
|
262
|
+
|
|
263
|
+
65
|
|
264
|
+
00:04:25.610 --> 00:04:28.070
|
|
265
|
+
and one in particular was child labor.
|
|
266
|
+
|
|
267
|
+
66
|
|
268
|
+
00:04:28.600 --> 00:04:31.310
|
|
269
|
+
Child labor was considered a necessary evil,
|
|
270
|
+
|
|
271
|
+
67
|
|
272
|
+
00:04:31.330 --> 00:04:33.270
|
|
273
|
+
but towards the end of the 18th century,
|
|
274
|
+
|
|
275
|
+
68
|
|
276
|
+
00:04:33.370 --> 00:04:36.390
|
|
277
|
+
it was increasingly considered outrageous. Now,
|
|
278
|
+
|
|
279
|
+
69
|
|
280
|
+
00:04:36.390 --> 00:04:41.110
|
|
281
|
+
after having identified that child labor was a topic that was frequently
|
|
282
|
+
|
|
283
|
+
70
|
|
284
|
+
00:04:41.300 --> 00:04:43.710
|
|
285
|
+
iden associated with feelings,
|
|
286
|
+
|
|
287
|
+
71
|
|
288
|
+
00:04:43.830 --> 00:04:48.390
|
|
289
|
+
I turned to a sociological analysis of those political and civil
|
|
290
|
+
|
|
291
|
+
72
|
|
292
|
+
00:04:48.500 --> 00:04:53.310
|
|
293
|
+
society actors that were concerned with addressing this particular
|
|
294
|
+
|
|
295
|
+
73
|
|
296
|
+
00:04:53.360 --> 00:04:55.110
|
|
297
|
+
issue. And here I ask,
|
|
298
|
+
|
|
299
|
+
74
|
|
300
|
+
00:04:55.490 --> 00:04:59.870
|
|
301
|
+
did the considerations of what feelings were in the 18th century
|
|
302
|
+
|
|
303
|
+
75
|
|
304
|
+
00:05:00.370 --> 00:05:04.430
|
|
305
|
+
did these considerations actually impact the
|
|
306
|
+
|
|
307
|
+
76
|
|
308
|
+
00:05:04.990 --> 00:05:09.870
|
|
309
|
+
practices that the actors chose to address the problem of
|
|
310
|
+
|
|
311
|
+
77
|
|
312
|
+
00:05:09.880 --> 00:05:10.713
|
|
313
|
+
child labor?
|
|
314
|
+
|
|
315
|
+
78
|
|
316
|
+
00:05:15.310 --> 00:05:19.460
|
|
317
|
+
Feelings matter, this sounds super intuitive today.
|
|
318
|
+
|
|
319
|
+
79
|
|
320
|
+
00:05:19.830 --> 00:05:23.220
|
|
321
|
+
There really wasn't in the 18th century. It was actually a process.
|
|
322
|
+
|
|
323
|
+
80
|
|
324
|
+
00:05:23.810 --> 00:05:27.660
|
|
325
|
+
Through research, through activism, through policymaking,
|
|
326
|
+
|
|
327
|
+
81
|
|
328
|
+
00:05:28.200 --> 00:05:32.100
|
|
329
|
+
it needed to be established. It was really important what people felt.
|
|
330
|
+
|
|
331
|
+
82
|
|
332
|
+
00:05:32.520 --> 00:05:36.460
|
|
333
|
+
It was really important how this could be influenced in the beginning, however,
|
|
334
|
+
|
|
335
|
+
83
|
|
336
|
+
00:05:37.120 --> 00:05:39.540
|
|
337
|
+
it was not yet about making all people happy.
|
|
338
|
+
|
|
339
|
+
84
|
|
340
|
+
00:05:40.030 --> 00:05:42.180
|
|
341
|
+
Early advocates of children's rights,
|
|
342
|
+
|
|
343
|
+
85
|
|
344
|
+
00:05:42.180 --> 00:05:46.940
|
|
345
|
+
of safe working environments of public education did not go so
|
|
346
|
+
|
|
347
|
+
86
|
|
348
|
+
00:05:47.280 --> 00:05:52.140
|
|
349
|
+
far as wanting to make children happy. Rather, in the first step,
|
|
350
|
+
|
|
351
|
+
87
|
|
352
|
+
00:05:52.450 --> 00:05:55.060
|
|
353
|
+
they wanted to prevent them from becoming criminals.
|
|
354
|
+
|
|
355
|
+
88
|
|
356
|
+
00:05:55.680 --> 00:05:59.620
|
|
357
|
+
One reason for this was that very many of the reformers were not only involved
|
|
358
|
+
|
|
359
|
+
89
|
|
360
|
+
00:05:59.880 --> 00:06:01.500
|
|
361
|
+
in one social reform movement,
|
|
362
|
+
|
|
363
|
+
90
|
|
364
|
+
00:06:01.560 --> 00:06:04.860
|
|
365
|
+
but in several among the prison reforms and in the prison,
|
|
366
|
+
|
|
367
|
+
91
|
|
368
|
+
00:06:05.170 --> 00:06:09.060
|
|
369
|
+
they learned that it was better to prevent crime than punish it,
|
|
370
|
+
|
|
371
|
+
92
|
|
372
|
+
00:06:09.840 --> 00:06:11.940
|
|
373
|
+
and where to better start than with the children.
|
|
374
|
+
|
|
375
|
+
93
|
|
376
|
+
00:06:12.440 --> 00:06:15.340
|
|
377
|
+
The social reformers drew on a variety of findings.
|
|
378
|
+
|
|
379
|
+
94
|
|
380
|
+
00:06:16.090 --> 00:06:18.860
|
|
381
|
+
Many of them came from moral philosophy or religion,
|
|
382
|
+
|
|
383
|
+
95
|
|
384
|
+
00:06:19.080 --> 00:06:22.900
|
|
385
|
+
but others came from science, economy, even statistics,
|
|
386
|
+
|
|
387
|
+
96
|
|
388
|
+
00:06:23.130 --> 00:06:25.380
|
|
389
|
+
disciplines that sound very dry today,
|
|
390
|
+
|
|
391
|
+
97
|
|
392
|
+
00:06:25.400 --> 00:06:30.340
|
|
393
|
+
but at the time were very much concerned with what people felt and what
|
|
394
|
+
|
|
395
|
+
98
|
|
396
|
+
00:06:30.490 --> 00:06:32.660
|
|
397
|
+
made people feel a certain way.
|
|
398
|
+
|
|
399
|
+
99
|
|
400
|
+
00:06:33.280 --> 00:06:37.940
|
|
401
|
+
So when the child advocates drew on these sciences,
|
|
402
|
+
|
|
403
|
+
100
|
|
404
|
+
00:06:38.250 --> 00:06:42.980
|
|
405
|
+
they established the idea that the children's feelings could not only be
|
|
406
|
+
|
|
407
|
+
101
|
|
408
|
+
00:06:43.300 --> 00:06:47.580
|
|
409
|
+
educated, learned, and taught, but they could also be deadened, dulled,
|
|
410
|
+
|
|
411
|
+
102
|
|
412
|
+
00:06:48.250 --> 00:06:51.660
|
|
413
|
+
stunted or blunted. And they wanted to prevent this.
|
|
414
|
+
|
|
415
|
+
103
|
|
416
|
+
00:06:52.090 --> 00:06:56.700
|
|
417
|
+
When children were working, they were, uh, sweeping the streets,
|
|
418
|
+
|
|
419
|
+
104
|
|
420
|
+
00:06:56.860 --> 00:07:00.700
|
|
421
|
+
sweeping the chimneys. They were doing dangerous tasks in the factories,
|
|
422
|
+
|
|
423
|
+
105
|
|
424
|
+
00:07:01.010 --> 00:07:03.820
|
|
425
|
+
very monotonous work, or they were working in mines.
|
|
426
|
+
|
|
427
|
+
106
|
|
428
|
+
00:07:04.280 --> 00:07:08.940
|
|
429
|
+
So the argument of many reformers ran that if the country wanted to prevent
|
|
430
|
+
|
|
431
|
+
107
|
|
432
|
+
00:07:09.540 --> 00:07:10.700
|
|
433
|
+
a rise in crime,
|
|
434
|
+
|
|
435
|
+
108
|
|
436
|
+
00:07:11.250 --> 00:07:15.980
|
|
437
|
+
they it needed to invest in educating children,
|
|
438
|
+
|
|
439
|
+
109
|
|
440
|
+
00:07:16.480 --> 00:07:20.940
|
|
441
|
+
in saving them from environments that turned them into callous,
|
|
442
|
+
|
|
443
|
+
110
|
|
444
|
+
00:07:20.940 --> 00:07:25.260
|
|
445
|
+
hard-hearted people that would then automatically become criminals.
|
|
446
|
+
|
|
447
|
+
111
|
|
448
|
+
00:07:25.440 --> 00:07:30.380
|
|
449
|
+
And it was the semantic analysis in particular that alerted me to the
|
|
450
|
+
|
|
451
|
+
112
|
|
452
|
+
00:07:30.380 --> 00:07:34.460
|
|
453
|
+
link between the sciences and the social reform movements because one of the
|
|
454
|
+
|
|
455
|
+
113
|
|
456
|
+
00:07:34.460 --> 00:07:38.300
|
|
457
|
+
terms that frequently came up when child labor was discussed was callous.
|
|
458
|
+
|
|
459
|
+
114
|
|
460
|
+
00:07:38.850 --> 00:07:40.020
|
|
461
|
+
That is a medical term.
|
|
462
|
+
|
|
463
|
+
115
|
|
464
|
+
00:07:40.200 --> 00:07:45.020
|
|
465
|
+
It means that your skin hardens because it put under pressure and you care to
|
|
466
|
+
|
|
467
|
+
116
|
|
468
|
+
00:07:45.020 --> 00:07:45.853
|
|
469
|
+
neglect it.
|
|
470
|
+
|
|
471
|
+
117
|
|
472
|
+
00:07:46.640 --> 00:07:51.620
|
|
473
|
+
And the children's heart and the moral consciousness was imagined in just the
|
|
474
|
+
|
|
475
|
+
118
|
|
476
|
+
00:07:51.620 --> 00:07:55.820
|
|
477
|
+
same term as the skin was that if too much pressure was,
|
|
478
|
+
|
|
479
|
+
119
|
|
480
|
+
00:07:55.920 --> 00:08:00.340
|
|
481
|
+
was put onto it, if it was neglected, then it would also harden.
|
|
482
|
+
|
|
483
|
+
120
|
|
484
|
+
00:08:00.960 --> 00:08:05.340
|
|
485
|
+
So children should be treated, and this was really new at the time.
|
|
486
|
+
|
|
487
|
+
121
|
|
488
|
+
00:08:05.960 --> 00:08:10.460
|
|
489
|
+
It should be treated like skin with a soft touch.
|
|
490
|
+
|
|
491
|
+
122
|
|
492
|
+
00:08:10.800 --> 00:08:12.180
|
|
493
|
+
It should be cared for
|
|
494
|
+
|
|
495
|
+
123
|
|
496
|
+
00:08:16.680 --> 00:08:19.370
|
|
497
|
+
What is the place of science thinking,
|
|
498
|
+
|
|
499
|
+
124
|
|
500
|
+
00:08:19.490 --> 00:08:23.090
|
|
501
|
+
intellectual labor in a society at a gift time?
|
|
502
|
+
|
|
503
|
+
125
|
|
504
|
+
00:08:23.460 --> 00:08:26.810
|
|
505
|
+
These are very pertinent questions that we are also asking today.
|
|
506
|
+
|
|
507
|
+
126
|
|
508
|
+
00:08:27.570 --> 00:08:28.980
|
|
509
|
+
What is the place of science?
|
|
510
|
+
|
|
511
|
+
127
|
|
512
|
+
00:08:29.650 --> 00:08:34.460
|
|
513
|
+
What findings shall we follow up on what findings shall be implemented
|
|
514
|
+
|
|
515
|
+
128
|
|
516
|
+
00:08:34.880 --> 00:08:39.420
|
|
517
|
+
in political regulations? In the 18th century, the questions were quite similar.
|
|
518
|
+
|
|
519
|
+
129
|
|
520
|
+
00:08:39.960 --> 00:08:44.410
|
|
521
|
+
The what outputs of intellectual labor, what research findings,
|
|
522
|
+
|
|
523
|
+
130
|
|
524
|
+
00:08:44.640 --> 00:08:49.570
|
|
525
|
+
what ideas that were generated from then eventually found their way in the
|
|
526
|
+
|
|
527
|
+
131
|
|
528
|
+
00:08:49.570 --> 00:08:53.570
|
|
529
|
+
infrastructure. In legislation, in social reform movements,
|
|
530
|
+
|
|
531
|
+
132
|
|
532
|
+
00:08:53.880 --> 00:08:55.300
|
|
533
|
+
this is very hard to trace,
|
|
534
|
+
|
|
535
|
+
133
|
|
536
|
+
00:08:55.400 --> 00:09:00.380
|
|
537
|
+
and I don't want to make a point about just general vague narratives or broad
|
|
538
|
+
|
|
539
|
+
134
|
|
540
|
+
00:09:00.470 --> 00:09:03.380
|
|
541
|
+
ideas that somehow spend the times. Rather,
|
|
542
|
+
|
|
543
|
+
135
|
|
544
|
+
00:09:03.580 --> 00:09:08.580
|
|
545
|
+
I want to look very concretely at particular instances where you can trace
|
|
546
|
+
|
|
547
|
+
136
|
|
548
|
+
00:09:09.080 --> 00:09:13.660
|
|
549
|
+
how an idea was first generated, then became published,
|
|
550
|
+
|
|
551
|
+
137
|
|
552
|
+
00:09:14.050 --> 00:09:18.580
|
|
553
|
+
thereby materialized was taken up by actors and then
|
|
554
|
+
|
|
555
|
+
138
|
|
556
|
+
00:09:18.730 --> 00:09:21.730
|
|
557
|
+
implemented in case of child labor.
|
|
558
|
+
|
|
559
|
+
139
|
|
560
|
+
00:09:21.950 --> 00:09:26.810
|
|
561
|
+
One could say that the finding that feelings
|
|
562
|
+
|
|
563
|
+
140
|
|
564
|
+
00:09:26.810 --> 00:09:31.730
|
|
565
|
+
mattered and that feelings were made became popularized it mid 18th
|
|
566
|
+
|
|
567
|
+
141
|
|
568
|
+
00:09:31.730 --> 00:09:36.050
|
|
569
|
+
century and were taken up by social reformers at the end of the 18th century
|
|
570
|
+
|
|
571
|
+
142
|
|
572
|
+
00:09:36.710 --> 00:09:41.090
|
|
573
|
+
and thereby and then influenced how they set up, for instance,
|
|
574
|
+
|
|
575
|
+
143
|
|
576
|
+
00:09:41.470 --> 00:09:45.290
|
|
577
|
+
Sunday schools or other institutions of public education.
|
|
578
|
+
|
|
579
|
+
144
|
|
580
|
+
00:09:45.560 --> 00:09:48.370
|
|
581
|
+
There's also a particular scholarly relevance to my topic.
|
|
582
|
+
|
|
583
|
+
145
|
|
584
|
+
00:09:48.930 --> 00:09:52.490
|
|
585
|
+
I am employing something that could be called a cross sectorial approach,
|
|
586
|
+
|
|
587
|
+
146
|
|
588
|
+
00:09:52.760 --> 00:09:57.090
|
|
589
|
+
meaning I'm not looking just at one field, for instance, economy,
|
|
590
|
+
|
|
591
|
+
147
|
|
592
|
+
00:09:57.570 --> 00:10:01.510
|
|
593
|
+
politics, or religion. Rather, I'm focusing on one theme,
|
|
594
|
+
|
|
595
|
+
148
|
|
596
|
+
00:10:02.250 --> 00:10:06.930
|
|
597
|
+
feelings and how this occurs in various fields. With such an approach,
|
|
598
|
+
|
|
599
|
+
149
|
|
600
|
+
00:10:07.050 --> 00:10:10.290
|
|
601
|
+
I want to contribute to a current trend in the humanities.
|
|
602
|
+
|
|
603
|
+
150
|
|
604
|
+
00:10:11.050 --> 00:10:16.010
|
|
605
|
+
I want to overcome the increasing insularity of sub-disciplines in the
|
|
606
|
+
|
|
607
|
+
151
|
|
608
|
+
00:10:16.010 --> 00:10:20.770
|
|
609
|
+
humanities and to focus again on a more integrated view of
|
|
610
|
+
|
|
611
|
+
152
|
|
612
|
+
00:10:20.770 --> 00:10:23.810
|
|
613
|
+
societies where it was, especially in the 18th century,
|
|
614
|
+
|
|
615
|
+
153
|
|
616
|
+
00:10:23.950 --> 00:10:28.690
|
|
617
|
+
really impossible to disentangle politics from religion,
|
|
618
|
+
|
|
619
|
+
154
|
|
620
|
+
00:10:28.920 --> 00:10:33.530
|
|
621
|
+
from economy, from science, from technology, it all belonged together,
|
|
622
|
+
|
|
623
|
+
155
|
|
624
|
+
00:10:34.190 --> 00:10:38.810
|
|
625
|
+
and taking an isolated view of one particular field actually
|
|
626
|
+
|
|
627
|
+
156
|
|
628
|
+
00:10:38.970 --> 00:10:41.770
|
|
629
|
+
produces a one-sided view of the past.
|
|
630
|
+
|
|
631
|
+
157
|
|
632
|
+
00:10:46.140 --> 00:10:51.070
|
|
633
|
+
Many of the reforms that were initiated in the late 18th century would meet our
|
|
634
|
+
|
|
635
|
+
158
|
|
636
|
+
00:10:51.350 --> 00:10:52.183
|
|
637
|
+
approval today.
|
|
638
|
+
|
|
639
|
+
159
|
|
640
|
+
00:10:52.490 --> 00:10:57.270
|
|
641
|
+
It sounds entirely outrageous that children had to work 16 hours in factories
|
|
642
|
+
|
|
643
|
+
160
|
|
644
|
+
00:10:57.810 --> 00:10:59.950
|
|
645
|
+
or that they had to climb up chimneys,
|
|
646
|
+
|
|
647
|
+
161
|
|
648
|
+
00:11:00.140 --> 00:11:04.550
|
|
649
|
+
sometimes only wearing their underwear and sometimes dying during their work.
|
|
650
|
+
|
|
651
|
+
162
|
|
652
|
+
00:11:04.940 --> 00:11:09.270
|
|
653
|
+
However, not all of the reforms were benign, and in many cases,
|
|
654
|
+
|
|
655
|
+
163
|
|
656
|
+
00:11:10.460 --> 00:11:13.080
|
|
657
|
+
caring, especially a very ostentatious, caring,
|
|
658
|
+
|
|
659
|
+
164
|
|
660
|
+
00:11:13.450 --> 00:11:16.000
|
|
661
|
+
could become another form of oppression.
|
|
662
|
+
|
|
663
|
+
165
|
|
664
|
+
00:11:16.290 --> 00:11:20.600
|
|
665
|
+
There were particular groups where the education of feeling,
|
|
666
|
+
|
|
667
|
+
166
|
|
668
|
+
00:11:20.810 --> 00:11:25.690
|
|
669
|
+
where turning them into happy good citizen was not just a benign
|
|
670
|
+
|
|
671
|
+
167
|
|
672
|
+
00:11:25.970 --> 00:11:28.330
|
|
673
|
+
endeavor, but was actually a means of oppression,
|
|
674
|
+
|
|
675
|
+
168
|
|
676
|
+
00:11:28.590 --> 00:11:32.330
|
|
677
|
+
of legitimizing violence or colonial interventions.
|
|
678
|
+
|
|
679
|
+
169
|
|
680
|
+
00:11:32.480 --> 00:11:35.930
|
|
681
|
+
There's one particular case that I want to look at further,
|
|
682
|
+
|
|
683
|
+
170
|
|
684
|
+
00:11:36.110 --> 00:11:40.370
|
|
685
|
+
and this will be my next steps. Protestant missionaries.
|
|
686
|
+
|
|
687
|
+
171
|
|
688
|
+
00:11:40.480 --> 00:11:45.130
|
|
689
|
+
They're very eager to take up the idea that you could convert the
|
|
690
|
+
|
|
691
|
+
172
|
|
692
|
+
00:11:45.140 --> 00:11:45.973
|
|
693
|
+
heart,
|
|
694
|
+
|
|
695
|
+
173
|
|
696
|
+
00:11:46.790 --> 00:11:51.570
|
|
697
|
+
and when a group was going to China at the beginning of the 19th
|
|
698
|
+
|
|
699
|
+
174
|
|
700
|
+
00:11:51.570 --> 00:11:52.403
|
|
701
|
+
century,
|
|
702
|
+
|
|
703
|
+
175
|
|
704
|
+
00:11:52.720 --> 00:11:57.660
|
|
705
|
+
they specifically argued that they wanted to cure the religious
|
|
706
|
+
|
|
707
|
+
176
|
|
708
|
+
00:11:57.920 --> 00:11:59.740
|
|
709
|
+
apathy of non-Christians.
|
|
710
|
+
|
|
711
|
+
177
|
|
712
|
+
00:11:59.920 --> 00:12:02.940
|
|
713
|
+
So what I want to do next is looking at the dark sides,
|
|
714
|
+
|
|
715
|
+
178
|
|
716
|
+
00:12:03.120 --> 00:12:06.140
|
|
717
|
+
the ambiguities of caring, compassion, and sympathy,
|
|
718
|
+
|
|
719
|
+
179
|
|
720
|
+
00:12:06.370 --> 00:12:10.860
|
|
721
|
+
because next to those who were forcefully converted to happiness,
|
|
722
|
+
|
|
723
|
+
180
|
|
724
|
+
00:12:11.330 --> 00:12:15.100
|
|
725
|
+
they were also other groups, especially from the military,
|
|
726
|
+
|
|
727
|
+
181
|
|
728
|
+
00:12:15.760 --> 00:12:20.660
|
|
729
|
+
who were just expected to never develop refined feelings and sympathy.
|
|
730
|
+
|
|
731
|
+
182
|
|
732
|
+
00:12:20.920 --> 00:12:24.500
|
|
733
|
+
In these cases, caring and compassion becomes very ambiguous,
|
|
734
|
+
|
|
735
|
+
183
|
|
736
|
+
00:12:24.840 --> 00:12:27.460
|
|
737
|
+
not only because iteg legitimizes interventions,
|
|
738
|
+
|
|
739
|
+
184
|
|
740
|
+
00:12:27.800 --> 00:12:31.540
|
|
741
|
+
but also because it becomes a privilege that is only granted to some,
|
|
742
|
+
|
|
743
|
+
185
|
|
744
|
+
00:12:31.800 --> 00:12:32.633
|
|
745
|
+
but not to others.
|
|
746
|
+
|
|
747
|
+
186
|
|
748
|
+
00:12:33.000 --> 00:12:37.940
|
|
749
|
+
One of the hardest things is actually to let ambiguity stand
|
|
750
|
+
|
|
751
|
+
187
|
|
752
|
+
00:12:38.000 --> 00:12:40.900
|
|
753
|
+
and to accept that there is no need stories.
|
|
754
|
+
|
|
755
|
+
188
|
|
756
|
+
00:12:41.320 --> 00:12:45.060
|
|
757
|
+
So it's not just that I am in the future, will be researching the dark sides,
|
|
758
|
+
|
|
759
|
+
189
|
|
760
|
+
00:12:45.600 --> 00:12:49.980
|
|
761
|
+
but I also need to learn that some of the ambiguities,
|
|
762
|
+
|
|
763
|
+
190
|
|
764
|
+
00:12:50.090 --> 00:12:53.260
|
|
765
|
+
some of the difficulties of histories I can never solve.
|