-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathh5pcontenttypes.json
2447 lines (2447 loc) · 109 KB
/
h5pcontenttypes.json
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
{
"contentTypes": [
{
"id": "H5P.Accordion",
"version": {
"major": 1,
"minor": 0,
"patch": 23
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 5
},
"title": "Accordion",
"summary": "Create vertically stacked expandable items",
"description": "Reduce the amount of text presented to readers by using this responsive accordion. Readers decide which headlines to take a closer look at by expanding the title. Excellent for providing an overview with optional in-depth explanations.",
"icon": "https://h5p.org/sites/default/files/accordion.svg",
"createdAt": "2017-02-28T11:46:18+0000",
"updatedAt": "2019-11-05T11:39:33+0000",
"isRecommended": true,
"popularity": 11,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/accordion-01.png?itok=qnXarBZ5",
"alt": "Collapsed"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/accordion-02.png?itok=lnTobl4C",
"alt": "Expanded"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/accordion",
"tutorial": "https://h5p.org/accordion-tutorial",
"keywords": [
"accordion",
"collapsible text"
]
},
{
"id": "H5P.ArithmeticQuiz",
"version": {
"major": 1,
"minor": 1,
"patch": 11
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 0
},
"title": "Arithmetic Quiz",
"summary": "Create time-based arithmetic quizzes",
"description": "Create arithmetic quizzes consisting of multiple choice questions. As an author, all you have to do is decide the type and length of the quiz. Users keep track of score and time spent when solving the quiz.",
"icon": "https://h5p.org/sites/default/files/arithmetic%20quiz.svg",
"createdAt": "2017-02-28T12:03:38+0000",
"updatedAt": "2019-07-16T08:15:38+0000",
"isRecommended": true,
"popularity": 22,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/arithmetic-quiz-01.png?itok=w00QVe4N",
"alt": "Arithmetic quiz start screen"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/arithmetic-quiz-02.png?itok=k6nal6kx",
"alt": "Arithmetic quiz question"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/arithmetic-quiz-03.png?itok=oHISx8VF",
"alt": "Arithmetic quiz correct answer given"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/arithmetic-quiz-04.png?itok=JIcoDl58",
"alt": "Arithmetic quiz end screen"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/arithmetic-quiz",
"keywords": [
"math",
"arithmetic quiz",
"countdown"
],
"categories": [
"Games",
"Questions"
]
},
{
"id": "H5P.Chart",
"version": {
"major": 1,
"minor": 2,
"patch": 15
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 21
},
"title": "Chart",
"summary": "Quickly generate bar and pie charts",
"description": "Need to present simple statistical data graphically without creating the artwork manually? Chart is your answer.",
"icon": "https://h5p.org/sites/default/files/chart.svg",
"createdAt": "2017-02-28T12:06:32+0000",
"updatedAt": "2019-11-05T11:39:33+0000",
"isRecommended": true,
"popularity": 42,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/arithmetic-quiz-01_0.png?itok=iRQawZtl",
"alt": "Pie chart view"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/arithmetic-quiz-02_0.png?itok=6G-3NLs-",
"alt": "Bar chart view"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/arithmetic-quiz-03_0.png?itok=dGg4KIiV",
"alt": "Bar chart view"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/chart",
"keywords": [
"chart",
"bar chart",
"pie chart",
"graph"
],
"categories": [
"Multimedia"
]
},
{
"id": "H5P.Collage",
"version": {
"major": 0,
"minor": 3,
"patch": 13
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 7
},
"title": "Collage",
"summary": "Create a collage of multiple images",
"description": "The Collage tool allows you to organize images into a soothing composition. ",
"icon": "https://h5p.org/sites/default/files/college.svg",
"createdAt": "2017-03-01T13:26:13+0000",
"updatedAt": "2019-11-01T07:48:05+0000",
"isRecommended": true,
"popularity": 34,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/collage-04_0.png?itok=Ix3CDsjz",
"alt": "Collage editor with no images"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/collage-03_0.png?itok=idf9cgYV",
"alt": "Collage editor with three images"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/collage-01_0.png?itok=-UtwiYRz",
"alt": "A collage containing 3 images of flowers"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/collage-02_0.png?itok=aTHRDus1",
"alt": "A collage containing 4 images of snowy mountains"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/collage",
"keywords": [
"collage",
"image"
],
"categories": [
"Multimedia"
]
},
{
"id": "H5P.Column",
"version": {
"major": 1,
"minor": 11,
"patch": 0
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 19
},
"title": "Column",
"summary": "Organize H5P content into a column layout",
"description": "Organize your content type into a column layout with H5P Column. Content types that address similar material or share a common theme can now be grouped together to create a coherent learning experience. In addition, authors are free to be creative by combining almost all of the existing H5P content types.",
"icon": "https://h5p.org/sites/default/files/column.svg",
"createdAt": "2017-03-01T13:30:32+0000",
"updatedAt": "2019-11-01T07:48:05+0000",
"isRecommended": true,
"popularity": 9,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/column-01.png?itok=37ibbzhk",
"alt": "A column containing an image, a text block and a question"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/column-02.png?itok=e2km4R4C",
"alt": "A column containing different content types"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/column-03.png?itok=nilYMNyC",
"alt": "A drag and drop inside a column"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/column",
"keywords": [
"column",
"layout",
"compound"
],
"categories": [
"Multimedia",
"Questions"
]
},
{
"id": "H5P.CoursePresentation",
"version": {
"major": 1,
"minor": 21,
"patch": 4
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 23
},
"title": "Course Presentation",
"summary": "Create a presentation with interactive slides",
"description": "Course presentations consist of slides with multimedia, text, and many different types of interactions like interactive summaries, multiple choice questions and interactive videos. Learners can experience new interactive learning material and test their knowledge and memory in Course Presentations. As always with H5P, content is editable in web browsers, and the Course Presentation activity type includes a WYSIWYG drag and drop based authoring tool. A typical use of the Course Presentation activity is to use a few slides to introduce a subject and follow these with a few more slides in which the user’s knowledge is tested. Course Presentations may however be used in many different ways, including as a presentation tool for use in the classroom, or as a game where the usual navigation is replaced with navigation buttons on top of the slides to let the user make choices and see the consequences of their choices.",
"icon": "https://h5p.org/sites/default/files/course%20presentation.svg",
"createdAt": "2017-03-01T13:34:27+0000",
"updatedAt": "2019-11-05T08:34:22+0000",
"isRecommended": true,
"popularity": 1,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/course-presentation-01.png?itok=ilSK_sEu",
"alt": "Adding an image to the editor"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/course-presentation-02_0.png?itok=NrkD9l5t",
"alt": "A single Choice Set inside the editor"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/course-presentation-03.png?itok=cJiwaVzi",
"alt": "A single Choice Set and an image of a cloudberry inside the editor"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/course-presentation-04_0.png?itok=CIQbHd-t",
"alt": "First slide of a presentation containing text and a clickable image"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/course-presentation-05_0.png?itok=z-6dFoL1",
"alt": "Summary slide"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/course-presentation-06_0.png?itok=gHNw6Vt0",
"alt": "Active surface mode"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/course-presentation-07_0.png?itok=oAOD70di",
"alt": "A slide containing video and text"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/presentation",
"tutorial": "https://h5p.org/tutorial-course-presentation",
"keywords": [
"course presentation",
"slides",
"powerpoint"
],
"categories": [
"Multimedia",
"Questions"
]
},
{
"id": "H5P.Dialogcards",
"version": {
"major": 1,
"minor": 8,
"patch": 2
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 15
},
"title": "Dialog Cards",
"summary": "Create text-based turning cards",
"description": "Dialog cards can be used as a drill to help learners memorize words, expressions or sentences. On the front of the card, there's a hint for a word or expression. By turning the card the learner reveals a corresponding word or expression. Dialog cards can be used in language learning, to present math problems or help learners remember facts such as historical events, formulas or names.",
"icon": "https://h5p.org/sites/default/files/dialog%20cards%20.svg",
"createdAt": "2017-03-01T13:38:58+0000",
"updatedAt": "2019-11-05T08:34:22+0000",
"isRecommended": true,
"popularity": 13,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/dialog-cards-01_0.png?itok=OgMQk8D5",
"alt": "Dialog card - front"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/dialog-cards-02_0.png?itok=Pv49ouxC",
"alt": "Dialog card - back"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/dialog-cards-03.png?itok=8wwQDVUw",
"alt": "Dialog card - front"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/dialog-cards-04.png?itok=8VFY5QY3",
"alt": "Dialog card - back"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/dialog-cards",
"tutorial": "https://h5p.org/tutorial-dialog-cards",
"keywords": [
"dialog cards"
],
"categories": [
"Multimedia",
"Questions"
]
},
{
"id": "H5P.DocumentationTool",
"version": {
"major": 1,
"minor": 8,
"patch": 3
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 19
},
"title": "Documentation Tool",
"summary": "Create a form wizard with text export",
"description": "The documentation tool aims to make it easy to create assessment wizards for goal driven activities. It can also be used as a form wizard. While editing, the author can add multiple steps to the wizard. In each step, the author can define which content goes into that step. Content can be plain text, input fields, goal definition and goal assessment. Once published, the end user will be taken through the steps of the wizard. On the last step of the wizard, the user can generate a document with all the input that has been submitted. This document can be downloaded. The Documentation tool is fully responsive and works great on smaller screens as well as on your desktop.",
"icon": "https://h5p.org/sites/default/files/documentation%20tool%20.svg",
"createdAt": "2017-03-01T13:41:51+0000",
"updatedAt": "2019-11-05T11:39:33+0000",
"isRecommended": true,
"popularity": 15,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/documentation-tool-01.png?itok=mIhHTIX3",
"alt": "User's view – document your project"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/documentation-tool-02.png?itok=WCPC1IpT",
"alt": "User's view – Goals"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/documentation-tool-03.png?itok=GWEa3LZf",
"alt": "User's view – Done"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/documentation-tool-04.png?itok=yFf2Qa-n",
"alt": "User's view – Document your project"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/documentation-tool",
"tutorial": "https://h5p.org/tutorial-documentation-tool",
"keywords": [
"dialog cards"
],
"categories": [
"Multimedia",
"Questions"
]
},
{
"id": "H5P.DragQuestion",
"version": {
"major": 1,
"minor": 13,
"patch": 9
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 23
},
"title": "Drag and Drop",
"summary": "Create drag and drop tasks with images",
"description": "Drag and drop question enables the learner to associate two or more elements and to make logical connections in a visual way. Create Drag and drop questions using both text and images as draggable alternatives. H5P Drag and drop questions support one-to-one, one-to-many, many-to-one and many-to-many relations between questions and answers. ",
"icon": "https://h5p.org/sites/default/files/drag%20and%20drop%20.svg",
"createdAt": "2017-03-01T13:49:11+0000",
"updatedAt": "2019-11-05T08:34:22+0000",
"isRecommended": true,
"popularity": 8,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/drag-and-drop-01.png?itok=xS6wYXCj",
"alt": "A drag and drop with one dropzone (strawberry) and three draggables"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/drag-and-drop-03.png?itok=BMTD9pmT",
"alt": "A drag and drop where the learner shall match flags and country names"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/drag-and-drop-04.png?itok=_QbzXvhm",
"alt": "A drag and drop where the learner shall match images of berries with their names"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/drag-and-drop-02.png?itok=xcDAfXTD",
"alt": "A drag and drop where the learner shall drag verbs, adjectives and nouns in the correct places"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/drag-and-drop-06.png?itok=jONaT2bA",
"alt": "A drag and drop where the learner shall place the draggables on spots on the background image"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/drag-and-drop-05.png?itok=wngjR93X",
"alt": "The drag and drop result view"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/drag-and-drop",
"tutorial": "https://h5p.org/tutorial-drag-and-drop-question",
"keywords": [
"drag and drop"
],
"categories": [
"Multimedia",
"Questions"
]
},
{
"id": "H5P.DragText",
"version": {
"major": 1,
"minor": 8,
"patch": 7
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 19
},
"title": "Drag the Words",
"summary": "Create text-based drag and drop tasks",
"description": "Drag the Words allows content designers to create textual expressions with missing pieces of text. The end user drags a missing piece of text to its correct place, to form a complete expression. May be used to check if the user remembers a text she has read, or if she understands something. Helps the user think through a text. It's super easy to create a drag the words task. The editor just writes the text and encloses the words that are to be draggable with asterisk signs like *draggableWord*.",
"icon": "https://h5p.org/sites/default/files/drag%20the%20words.svg",
"createdAt": "2017-03-01T13:54:37+0000",
"updatedAt": "2019-11-05T08:34:22+0000",
"isRecommended": true,
"popularity": 3,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/drag-the-words-01.png?itok=dpMCvPPe",
"alt": "Drag text - initial state."
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/drag-the-words-02.png?itok=njr_aEqB",
"alt": "Drag text after clicking the \"check\" button"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/drag-the-words-03.png?itok=2xeHtKBa",
"alt": "Tip in drag text"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/drag-the-words",
"tutorial": "https://h5p.org/documentation/content-author-guide/tutorials-for-authors/drag-the-words",
"keywords": [
"drag",
"words"
],
"categories": [
"Multimedia",
"Questions"
]
},
{
"id": "H5P.Blanks",
"version": {
"major": 1,
"minor": 12,
"patch": 3
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 19
},
"title": "Fill in the Blanks",
"summary": "Create a task with missing words in a text",
"description": "Learners fill in the missing words in a text. The learner is shown a solution after filling in all the missing words, or after each word depending on settings. Authors enter text and mark words to be replaced with an asterix. In addition to native and second language learning, Fill in the blanks can be used to test the learner's ability to reproduce facts or produce mathematical inferences.",
"icon": "https://h5p.org/sites/default/files/fill%20in%20the%20blanks.svg",
"createdAt": "2017-03-01T13:59:07+0000",
"updatedAt": "2019-11-05T08:34:22+0000",
"isRecommended": true,
"popularity": 5,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/fill-in-the-blanks-01.png?itok=EwyBhMVL",
"alt": "The student's initial view - empty blanks"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/fill-in-the-blanks-02.png?itok=ByI6y9m-",
"alt": "The result view showing corrects and wrongs"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/fill-in-the-blanks-03.png?itok=49rZ2yTY",
"alt": "Tip inside blanks"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/fill-in-the-blanks-04.png?itok=m8MnJh16",
"alt": "A blank with \"Automatically check answers after input\" enabled"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/fill-in-the-blanks",
"tutorial": "https://h5p.org/tutorial-fill-in-the-blanks",
"keywords": [
"fill",
"blanks",
"text"
],
"categories": [
"Multimedia",
"Questions"
]
},
{
"id": "H5P.ImageHotspotQuestion",
"version": {
"major": 1,
"minor": 8,
"patch": 6
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 23
},
"title": "Find the Hotspot",
"summary": "Create image hotspots for users to find",
"description": "This content type allows end users to press somewhere on an image and get feedback on whether that was correct or incorrect according to the task description. The author uploads an image and defines various hotspots corresponding to details or sections of the image. Hotspots can either be defined as correct or incorrect, and the author provides appropriate feedback text in both cases. The author can also define a feedback if the end user presses somewhere which is neither defined as a correct nor incorrect hotspot.",
"icon": "https://h5p.org/sites/default/files/find%20the%20hotspot.svg",
"createdAt": "2017-03-01T14:13:56+0000",
"updatedAt": "2019-11-01T07:48:05+0000",
"isRecommended": false,
"popularity": 28,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/find-the-hotspot-01.png?itok=G5zJHEh0",
"alt": "Learner's view - correct answer is selected"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/find-the-hotspot-02.png?itok=mNIZ5J08",
"alt": "Editor view"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/image-hotspot-question",
"keywords": [
"find",
"hotspot",
"image"
],
"categories": [
"Multimedia",
"Questions"
]
},
{
"id": "H5P.GuessTheAnswer",
"version": {
"major": 1,
"minor": 4,
"patch": 7
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 19
},
"title": "Guess the Answer",
"summary": "Create an image with a question and answer",
"description": "This content type allows authors to upload an image and add a suitable description. End users can guess the answer and press the bar below the image to reveal the correct answer.",
"icon": "https://h5p.org/sites/default/files/guess%20the%20answer.svg",
"createdAt": "2017-03-01T14:18:25+0000",
"updatedAt": "2019-11-05T08:34:22+0000",
"isRecommended": true,
"popularity": 36,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/guess-the-answer-01.png?itok=cKWhsf7W",
"alt": "Learner's initial view"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/guess-the-answer-02.png?itok=k9g-O8UW",
"alt": "Learner's view revealing the correct answer"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/guess-the-answer",
"tutorial": "https://h5p.org/documentation/content-author-guide/tutorials-for-authors/guess-the-answer",
"keywords": [
"guess",
"answer"
],
"categories": [
"Multimedia",
"Questions"
]
},
{
"id": "H5P.IFrameEmbed",
"version": {
"major": 1,
"minor": 0,
"patch": 24
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 0
},
"title": "Iframe Embedder",
"summary": "Embed from a url or a set of files",
"description": "The Iframe embedder makes it easy to make an H5P of already existing JavaScript applications.",
"icon": "https://h5p.org/sites/default/files/iframe%20embedder.svg",
"createdAt": "2017-03-01T14:28:04+0000",
"updatedAt": "2017-04-06T10:46:45+0000",
"isRecommended": false,
"popularity": 17,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/iFrame-embedder-01.png?itok=CehXfNpd",
"alt": "End user's view"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/iFrame-embedder-02.png?itok=p5V0tHcY",
"alt": "End user's view"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/iframe-embedder",
"keywords": [
"embed",
"iframe"
],
"categories": [
"Multimedia",
"Questions"
]
},
{
"id": "H5P.InteractiveVideo",
"version": {
"major": 1,
"minor": 21,
"patch": 5
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 23
},
"title": "Interactive Video",
"summary": "Create videos enriched with interactions",
"description": "Add interactivity to your video with explanations, extra pictures, tables, Fill in the Blank and multiple choice questions. Quiz questions support adaptivity, meaning that you can jump to another part of the video based on the user's input. Interactive summaries can be added at the end of the video. Interactive videos are created and edited using the H5P authoring tool in a standard web browser.",
"icon": "https://h5p.org/sites/default/files/interactive%20video.svg",
"createdAt": "2017-03-01T14:44:22+0000",
"updatedAt": "2019-11-22T12:16:15+0000",
"isRecommended": true,
"popularity": 2,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/interactive-video-01.png?itok=WgAmEzb0",
"alt": "Interactive video start screen"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/interactive-video-02.png?itok=9P0-eiaB",
"alt": "The editor with a multiple choice question"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/interactive-video-03.png?itok=2X03y0pe",
"alt": "Inside the editor showing the multiple choice editor"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/interactive-video-04.png?itok=NtKe_dhK",
"alt": "Bookmarks menu"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/interactive-video-05.png?itok=Xy-1r3Dt",
"alt": "Drag and drop inside the video"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/interactive-video-06.png?itok=aVysZc0i",
"alt": "Summary at the end of the video"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/interactive-video",
"tutorial": "https://h5p.org/tutorial-interactive-video",
"keywords": [
"interactive",
"video"
],
"categories": [
"Multimedia",
"Questions"
]
},
{
"id": "H5P.MarkTheWords",
"version": {
"major": 1,
"minor": 9,
"patch": 7
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 19
},
"title": "Mark the Words",
"summary": "Create a task where users highlight words",
"description": "Mark the words allows content designers to create textual expressions with a defined set of correct words. The end user highlights words according to the task description and is given a score. For the editor it is super easy to create a click the words challenge. The editor types in the text and encloses the words that the user is supposed to click, the right answers, in asterix like *correctWord*.",
"icon": "https://h5p.org/sites/default/files/mark%20the%20words.svg",
"createdAt": "2017-03-01T14:46:50+0000",
"updatedAt": "2019-11-05T08:34:22+0000",
"isRecommended": true,
"popularity": 7,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/mark-the-words-01_0.png?itok=FTe4BK8x",
"alt": "Learner's initial view"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/mark-the-words-03_0.png?itok=veoD8bpQ",
"alt": "Learner's view - showing solution"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/mark-the-words",
"tutorial": "https://h5p.org/documentation/content-author-guide/tutorials-for-authors/mark-the-words",
"keywords": [
"mark",
"words"
],
"categories": [
"Multimedia",
"Questions"
]
},
{
"id": "H5P.MemoryGame",
"version": {
"major": 1,
"minor": 3,
"patch": 4
},
"coreApiVersionNeeded": {
"major": 1,
"minor": 20
},
"title": "Memory Game",
"summary": "Create the classic image pairing game",
"description": "Create your own memory games and test the memory of your site's users with this simple yet beautiful HTML5 game.",
"icon": "https://h5p.org/sites/default/files/memmory%20game.svg",
"createdAt": "2017-03-01T14:49:02+0000",
"updatedAt": "2019-07-16T08:23:44+0000",
"isRecommended": true,
"popularity": 10,
"screenshots": [
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/memmory-game-02.png?itok=wrU2ytID",
"alt": "Student's view"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/memmory-game-03.png?itok=dCb0YlGe",
"alt": "Student's view - feedback after the match"
},
{
"url": "https://h5p.org/sites/default/files/styles/h5p-content-type-hub-screenshot/public/memmory-game-01.png?itok=AeOPD5HE",
"alt": "Student's view - matching two different images"
}
],
"license": {
"id": "MIT",
"attributes": {
"useCommercially": true,
"modifiable": true,
"distributable": true,
"sublicensable": true,
"canHoldLiable": false,
"mustIncludeCopyright": true,
"mustIncludeLicense": true
}
},
"owner": "Joubel",
"example": "https://h5p.org/memory-game",
"tutorial": "https://h5p.org/documentation/content-author-guide/tutorials-for-authors/memory-game",
"keywords": [
"memory",
"game",
"cards"
],
"categories": [