-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews?page=1.html
1206 lines (1003 loc) · 76.3 KB
/
news?page=1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr" prefix="content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ og: http://ogp.me/ns# rdfs: http://www.w3.org/2000/01/rdf-schema# schema: http://schema.org/ sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema# ">
<head>
<meta charset="utf-8" />
<meta name="Generator" content="Drupal 8 (https://www.drupal.org)" />
<meta name="MobileOptimized" content="width" />
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="https://trompamusic.eu/sites/default/files/fav.png" type="image/png" />
<link rel="alternate" hreflang="en" href="news.html" />
<link rel="canonical" href="news.html" />
<link rel="shortlink" href="taxonomy/term/10.html" />
<link rel="delete-form" href="https://trompamusic.eu/taxonomy/term/10/delete" />
<link rel="edit-form" href="https://trompamusic.eu/taxonomy/term/10/edit" />
<link rel="drupal:content-translation-overview" href="https://trompamusic.eu/taxonomy/term/10/translations" />
<link rel="drupal:content-translation-add" href="https://trompamusic.eu/taxonomy/term/10/translations/add" />
<link rel="drupal:content-translation-edit" href="https://trompamusic.eu/taxonomy/term/10/translations/edit" />
<link rel="drupal:content-translation-delete" href="https://trompamusic.eu/taxonomy/term/10/translations/delete" />
<link rel="alternate" type="application/rss+xml" title="News" href="taxonomy/term/10/feed" />
<title>News | TROMPA</title>
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/assets/vendor/normalize-css/normalize.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/misc/normalize-fixes.css?qc36vr" />
<link rel="stylesheet" media="all" href="libraries/superfish/css/superfish.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/ajax-progress.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/align.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/autocomplete-loading.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/fieldgroup.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/container-inline.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/clearfix.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/details.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/hidden.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/item-list.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/js.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/nowrap.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/position-container.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/progress.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/reset-appearance.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/resize.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/sticky-header.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/system-status-counter.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/system-status-report-counters.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/system-status-report-general-info.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/tabledrag.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/tablesort.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/system/components/tree-child.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/views/views.module.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/stable/css/core/dropbutton/dropbutton.css?qc36vr" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/base/layout.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/base/typography.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/base/elements.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/base/local-base.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/action-links.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/breadcrumb.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/button.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/collapse-processed.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/container-inline.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/details.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/exposed-filters.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/field.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/form.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/icons.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/inline-form.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/item-list.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/link.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/links.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/menu.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/more-link.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/pager.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/tabledrag.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/tableselect.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/tablesort.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/tabs.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/textarea.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/ui-dialog.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/messages.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/node.css?qc36vr" />
<link rel="stylesheet" media="all" href="https://trompamusic.eu/core/themes/classy/css/components/dropbutton.css?qc36vr" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/accordion.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/block.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/breadcrumb.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/buttons.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/call-to-action.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/contact-info.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/more-links.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/comments.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/forms.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/field-taxonomy-term.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/icons-list.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/item-list.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/image-overlay.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/node.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/node-testimonial.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/node-links.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/node-images.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/search.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/site-branding.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/tables.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/tabs.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/team-members.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/pills.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/pager.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/menu.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/views.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/view-promoted-items.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/flexslider.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/messages.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/to-top.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/fixed-header.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/components/local-components.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" />
<link rel="stylesheet" media="all" href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,300,700&subset=latin-ext,latin,greek" />
<link rel="stylesheet" media="all" href="https://fonts.googleapis.com/css?family=Roboto:400,400italic,700,300,700italic&subset=latin-ext,latin,greek" />
<link rel="stylesheet" media="all" href="https://fonts.googleapis.com/css?family=Source+Code+Pro&subset=latin,latin-ext" />
<link rel="stylesheet" media="all" href="https://fonts.googleapis.com/css?family=PT+Serif:400,700,400italic,700italic&subset=latin,latin-ext" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/theme/color-gray-orange.css%3Fqc36vr.css" />
<link rel="stylesheet" media="all" href="themes/contrib/startupgrowth_lite/css/theme/local-theme.css%3Fqc36vr.css" />
<!--[if lte IE 8]>
<script src="/core/assets/vendor/html5shiv/html5shiv.min.js?v=3.7.3"></script>
<![endif]-->
</head>
<body class="layout-one-sidebar layout-sidebar-second wide form-style-1 hff-10 pff-05 sff-05 slff-10 fixed-header-enabled path-taxonomy">
<a href="news%3Fpage=1.html#main-content" class="visually-hidden focusable skip-link">
Skip to main content
</a>
<div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas>
<div id="page-container" class="page-container">
<div id="header-container" class="header-container white-region">
<header id="header" role="banner" class="clearfix header fixed-width two-columns">
<div class="container">
<div id="header-inside" class="clearfix header-inside">
<div class="row">
<div class="col-md-4">
<div class="header-area">
<div id="header-inside-first" class="clearfix header-inside-first">
<div class="region region-header-first">
<div id="block-startupgrowth-lite-branding" class="clearfix site-branding block block-system block-system-branding-block">
<div class="logo-and-site-name-wrapper clearfix">
<div class="logo">
<a href="index.html" title="Home" rel="home" class="site-branding__logo">
<img src="sites/default/files/top-bar-logo_0_0.png" alt="Home" />
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-8">
<div class="header-area">
<div id="header-inside-third" class="clearfix header-inside-third">
<div id="search-area" class="clearfix search-area">
<div class="region region-search-area">
<div class="search-block-form block block-search container-inline" data-drupal-selector="search-block-form" id="block-searchform" role="search">
<form action="https://trompamusic.eu/search/node" method="get" id="search-block-form" accept-charset="UTF-8">
<div class="js-form-item form-item js-form-type-search form-type-search js-form-item-keys form-item-keys form-no-label">
<label for="edit-keys" class="visually-hidden">Search</label>
<input title="Enter the terms you wish to search for." placeholder="Search..." data-drupal-selector="edit-keys" type="search" id="edit-keys" name="keys" value="" size="15" maxlength="128" class="form-search" />
</div>
<div data-drupal-selector="edit-actions" class="form-actions js-form-wrapper form-wrapper" id="edit-actions"><input class="search-form__submit button js-form-submit form-submit" data-drupal-selector="edit-submit" type="submit" id="edit-submit" value="Search" />
</div>
</form>
</div>
</div>
</div>
<div id="main-navigation" class="clearfix main-navigation with-search-bar ">
<nav role="navigation">
<div class="region region-navigation">
<div id="block-mainnavigation-2" class="block block-core block-superfishmain">
<div class="content">
<ul id="superfish-main" class="menu sf-menu sf-main sf-horizontal sf-style-none">
<li id="main-menu-link-content418a3919-5203-4ef0-8b47-aecb184f90ab" class="sf-depth-1 menuparent"><a href="about-trompa.html" class="sf-depth-1 menuparent">About TROMPA</a><ul><li id="main-menu-link-content3d9fb446-be6b-4529-9ea0-0ff37a447fe1" class="sf-depth-2 sf-no-children"><a href="about.html" class="sf-depth-2">About</a></li><li id="main-menu-link-contenta2452c03-612c-42c3-b85b-1699234ddc32" class="sf-depth-2 sf-no-children"><a href="partners.html" class="sf-depth-2">Partners</a></li><li id="main-menu-link-content5190ab8a-5cf2-49a1-879e-418022f6ffb3" class="sf-depth-2 sf-no-children"><a href="about/supporters.html" class="sf-depth-2">Supporters</a></li><li id="main-menu-link-content9984161e-cc51-4e56-9876-f94f68e4ddde" class="sf-depth-2 sf-no-children"><a href="supporters.html" class="sf-depth-2">Advisers</a></li></ul></li><li id="main-menu-link-contentac9cf80f-623d-45f3-bc9c-84f404289d5a" class="active-trail sf-depth-1 sf-no-children"><a href="news.html" class="is-active sf-depth-1">News</a></li><li id="main-menu-link-content48405c91-623b-4eb2-86d6-1b5721c768a3" class="sf-depth-1 menuparent"><a href="use-cases.html" class="sf-depth-1 menuparent">Use cases</a><ul><li id="main-menu-link-content6019e1cf-931b-4ff2-95c5-38a5ea4f5371" class="sf-depth-2 sf-no-children"><a href="music-scholars.html" class="sf-depth-2">Music scholars</a></li><li id="main-menu-link-contentbf2f6ad3-69ee-4bd2-9522-dc6333dcab8f" class="sf-depth-2 sf-no-children"><a href="choir-singers.html" title="Choir Singers" class="sf-depth-2">Choir Singers</a></li><li id="main-menu-link-content672b5377-03b1-4524-b454-58c4c6e890ee" class="sf-depth-2 sf-no-children"><a href="content-owners.html" class="sf-depth-2">Content owners</a></li><li id="main-menu-link-content04031ec3-03b6-4b55-89b0-decfe9ce9e28" class="sf-depth-2 sf-no-children"><a href="instrumental-players.html" class="sf-depth-2">Instrumental players</a></li><li id="main-menu-link-content170453c2-9746-434a-9284-7e79b6baca58" class="sf-depth-2 sf-no-children"><a href="music-enthusiasts.html" class="sf-depth-2">Music enthusiasts</a></li></ul></li><li id="main-menu-link-content169ef468-b856-4258-9f86-86204d720379" class="sf-depth-1 menuparent"><a href="research-themes.html" class="sf-depth-1 menuparent">Research</a><ul><li id="main-menu-link-content8732c141-dd2b-45f7-8732-0eca6bc5c9db" class="sf-depth-2 menuparent"><a href="research/themes.html" class="sf-depth-2 menuparent">Themes</a><ul><li id="main-menu-link-contenta3416527-fd4a-4c97-83e7-19227f27ece4" class="sf-depth-3 sf-no-children"><a href="research/themes/scanned-score-analysis.html" class="sf-depth-3">Scanned score analysis</a></li><li id="main-menu-link-content5754fdca-61cb-4416-9e4a-6276e483208a" class="sf-depth-3 sf-no-children"><a href="research/themes/crowd-annotation-of-cultural-heritage-collections.html" class="sf-depth-3">Crowd annotation of cultural heritage collections</a></li><li id="main-menu-link-contenta965b9c5-2bcc-486b-8d2a-7beb2b365ecd" class="sf-depth-3 sf-no-children"><a href="research/themes/automatic-performance-and-piece-assessment.html" class="sf-depth-3">Automatic performance and piece assessment</a></li><li id="main-menu-link-contentd4e7200c-e55d-4b1a-8258-fa34ba514c61" class="sf-depth-3 sf-no-children"><a href="research/themes/multimodal-cross-linking.html" class="sf-depth-3">Multimodal cross-linking</a></li><li id="main-menu-link-contentfa74eb4f-1f8a-4987-8fc9-44b4a8967b69" class="sf-depth-3 sf-no-children"><a href="research/themes/singing-voice-synthesis-for-score-sonification.html" class="sf-depth-3">Singing voice synthesis for score sonification</a></li><li id="main-menu-link-content9b489d13-2186-4738-8813-fa72a9e87892" class="sf-depth-3 sf-no-children"><a href="research/themes/symbolic-music-description.html" class="sf-depth-3">Symbolic music description</a></li><li id="main-menu-link-contentacc8162f-a271-41fd-b592-92cb3a73dca8" class="sf-depth-3 sf-no-children"><a href="research/themes/multimodal-music-description.html" class="sf-depth-3">Multimodal music description</a></li></ul></li><li id="main-menu-link-contentfa05eda3-5a13-482b-90a1-f9197d001668" class="sf-depth-2 menuparent"><a href="research/results.html" class="sf-depth-2 menuparent">Results</a><ul><li id="main-menu-link-content8682b8da-1f78-4db1-8e5b-06d270c5ec38" class="sf-depth-3 sf-no-children"><a href="research/results/deliverables.html" class="sf-depth-3">Deliverables</a></li><li id="main-menu-link-content7d300042-9345-4185-b409-c48ebbe8c684" class="sf-depth-3 sf-no-children"><a href="research/results/publications.html" class="sf-depth-3">Publications</a></li></ul></li></ul></li><li id="main-menu-link-content01b7ea5f-03d3-4895-bb4e-a9338aedf64c" class="sf-depth-1 menuparent"><a href="get-involved.html" class="sf-depth-1 menuparent">Get involved</a><ul><li id="main-menu-link-content2ea12226-e573-4035-8446-db014bae64e5" class="sf-depth-3 sf-no-children"><a href="rucus2019.html" title="Conference on Requirements, Use Cases, and User Studies in Digital Music Libraries and Archives" class="sf-depth-3">Rucus2019</a></li></ul></li>
</ul>
</div>
</div>
</div>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
</div>
<div id="banner" class="clearfix banner">
<div class="container-fluid">
<div id="banner-inside" class="clearfix banner-inside">
<div class="banner-area">
<div class="row">
<div class="col-md-12">
<div class="region region-banner">
<div id="block-startupgrowth-lite-breadcrumbs" class="block block-system block-system-breadcrumb-block">
<div class="content">
<nav class="breadcrumb" role="navigation" aria-labelledby="system-breadcrumb">
<h2 id="system-breadcrumb" class="visually-hidden">Breadcrumb</h2>
<ol>
<li>
<span class="breadcrumb-separator fa fa-angle-right"></span>
<a href="index.html">
<span class="sr-only">Home</span>
</a>
</li>
<li>
<span class="breadcrumb-separator fa fa-angle-right"></span>
<span>News</span>
</li>
</ol>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="page-start" class="clearfix"></div>
<div id="page" class="clearfix page">
<div class="system-messages">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="region region-system-messages">
<div data-drupal-messages-fallback class="hidden"></div>
</div>
</div>
</div>
</div>
</div>
<div id="main-content" class="clearfix main-content white-region">
<div class="container">
<div class="row">
<section class="col-md-8">
<div id="main" class="clearfix main main-area"
>
<div class="region region-content">
<div id="block-startupgrowth-lite-content" class="block block-system block-system-main-block">
<div class="content">
<div class="views-element-container"><div class="view view-taxonomy-term view-id-taxonomy_term view-display-id-page_1 js-view-dom-id-5c0d121d8b8316aa30daa5e01ddbd1696e6718ee386617eeb5983c827e46aa95">
<div class="view-header">
<div about="/news" typeof="schema:Thing" id="taxonomy-term-10" class="taxonomy-term vocabulary-tags">
<span property="schema:name" content="News" class="rdf-meta hidden"></span>
<div class="content">
</div>
</div>
</div>
<div class="view-content">
<div class="views-row">
<article data-history-node-id="112" role="article" about="/index.php/node/112" typeof="schema:Article" class="node node--type-article node--promoted node--view-mode-teaser clearfix">
<div class="node--content-container">
<div class="node--submitted-info
">
<div class="submitted-date">
<i class="fa fa-calendar hidden-lg hidden-md hidden-sm"></i>
<div class="month">Apr</div>
<div class="day">06</div>
<div class="year">2020</div>
</div>
<div class="comments-count">
<i class="fa fa-comment"></i>
<div class="comment-counter">0</div>
</div>
</div>
<div class="node--content clearfix">
<header>
<h2 class="node__title">
<a href="index.php/node/112.html" rel="bookmark"><span property="schema:name" class="field field--name-title field--type-string field--label-hidden">Music Enthusiasts working pilot released!</span>
</a>
</h2>
<span property="schema:name" content="Music Enthusiasts working pilot released!" class="rdf-meta hidden"></span>
<span property="schema:interactionCount" content="UserComments:0" class="rdf-meta hidden"></span>
<div class="node__meta">
<article typeof="schema:Person" about="/user/101" class="profile">
</article>
<span class="submitted-info">
By <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><span lang="" about="/index.php/user/101" typeof="schema:Person" property="schema:name" datatype="">Nicolas Gutierrez</span></span>
</span>
<span property="schema:dateCreated" content="2020-04-06T10:42:29+00:00" class="rdf-meta hidden"></span>
</div>
</header>
<div class="node--main-content">
<div class="images-container clearfix">
<div class="image-preview clearfix">
<div class="image-wrapper clearfix">
<div class="field field--name-field-image field--type-image field--label-hidden field__item"> <a class="overlayed image-popup" href="index.php/node/112.html"><img property="schema:image" src="sites/default/files/styles/large/public/2020-10/workflow.png%3Fitok=5CwOS_Vq" width="750" height="500" alt="trompa-me-workflow" typeof="foaf:Image" class="image-style-large" />
<span class="overlay"><i class="fa fa-plus"></i></span></a>
</div>
</div>
</div>
</div>
<div property="schema:text" class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>Today we have released the <a href="https://ilde.upf.edu/trompa/">Music Enthusiasts use case working pilot</a> to be tested during the following weeks! We are currently running online testing with real users to validate the functionalities of the tool.</div>
<div class="field field--name-field-tags field--type-entity-reference field--label-above field--entity-reference-target-type-taxonomy-term clearfix">
<h3 class="field__label">Tags</h3>
<ul class='links field__items'>
<li><a href="index.php/music-enthusiasts.html" property="schema:about" hreflang="en">Music enthusiasts</a></li>
<li><a href="index.php/news.html" property="schema:about" hreflang="en">News</a></li>
</ul>
</div> <div class="node__links">
<ul class="links inline"><li class="node-readmore"><a href="index.php/node/112.html" rel="tag" title="Music Enthusiasts working pilot released!" hreflang="en">Read more<span class="visually-hidden"> about Music Enthusiasts working pilot released!</span></a></li></ul> </div>
</div>
</div>
</div>
</article>
</div>
<div class="views-row">
<article data-history-node-id="111" role="article" about="/kmt2020" typeof="schema:Article" class="node node--type-article node--promoted node--view-mode-teaser clearfix">
<div class="node--content-container">
<div class="node--submitted-info
">
<div class="submitted-date">
<i class="fa fa-calendar hidden-lg hidden-md hidden-sm"></i>
<div class="month">Apr</div>
<div class="day">03</div>
<div class="year">2020</div>
</div>
<div class="comments-count">
<i class="fa fa-comment"></i>
<div class="comment-counter">0</div>
</div>
</div>
<div class="node--content clearfix">
<header>
<h2 class="node__title">
<a href="kmt2020.html" rel="bookmark"><span property="schema:name" class="field field--name-title field--type-string field--label-hidden">Cynthia Liem invited speaker at Karajan Music Tech conference</span>
</a>
</h2>
<span property="schema:name" content="Cynthia Liem invited speaker at Karajan Music Tech conference" class="rdf-meta hidden"></span>
<span property="schema:interactionCount" content="UserComments:0" class="rdf-meta hidden"></span>
<div class="node__meta">
<article typeof="schema:Person" about="/user/6" class="profile">
</article>
<span class="submitted-info">
By <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><span lang="" about="/user/6" typeof="schema:Person" property="schema:name" datatype="">Cynthia Liem</span></span>
</span>
<span property="schema:dateCreated" content="2020-04-03T16:53:56+00:00" class="rdf-meta hidden"></span>
</div>
</header>
<div class="node--main-content">
<div property="schema:text" class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item">On April 3, 2020, Cynthia Liem was an invited speaker at the Karajan Music Tech conference, which this year took place as a virtual conference.
She presented her personal motivations as a musician and computer scientist, and how this has connected to the international music digitization projects she has been involved in: first the PHENICX project, and currently TROMPA.
Choose 'Read More' to see the YouTube video, as well as a link to slides and a form to indicate your interest in our project!
</div>
<div class="field field--name-field-tags field--type-entity-reference field--label-above field--entity-reference-target-type-taxonomy-term clearfix">
<h3 class="field__label">Tags</h3>
<ul class='links field__items'>
<li><a href="taxonomy/term/51.html" property="schema:about" hreflang="en">Karajan</a></li>
<li><a href="taxonomy/term/52.html" property="schema:about" hreflang="en">MusicTech</a></li>
<li><a href="news.html" property="schema:about" hreflang="en">News</a></li>
</ul>
</div> <div class="node__links">
<ul class="links inline"><li class="node-readmore"><a href="kmt2020.html" rel="tag" title="Cynthia Liem invited speaker at Karajan Music Tech conference" hreflang="en">Read more<span class="visually-hidden"> about Cynthia Liem invited speaker at Karajan Music Tech conference</span></a></li></ul> </div>
</div>
</div>
</div>
</article>
</div>
<div class="views-row">
<article data-history-node-id="110" role="article" about="/index.php/covid" typeof="schema:Article" class="node node--type-article node--promoted node--view-mode-teaser clearfix">
<div class="node--content-container">
<div class="node--submitted-info
">
<div class="submitted-date">
<i class="fa fa-calendar hidden-lg hidden-md hidden-sm"></i>
<div class="month">Apr</div>
<div class="day">03</div>
<div class="year">2020</div>
</div>
<div class="comments-count">
<i class="fa fa-comment"></i>
<div class="comment-counter">0</div>
</div>
</div>
<div class="node--content clearfix">
<header>
<h2 class="node__title">
<a href="index.php/covid.html" rel="bookmark"><span property="schema:name" class="field field--name-title field--type-string field--label-hidden">Music Content in the Public-domain in a Period of Confinement </span>
</a>
</h2>
<span property="schema:name" content="Music Content in the Public-domain in a Period of Confinement " class="rdf-meta hidden"></span>
<span property="schema:interactionCount" content="UserComments:0" class="rdf-meta hidden"></span>
<div class="node__meta">
<article typeof="schema:Person" about="/user/23" class="profile">
</article>
<span class="submitted-info">
By <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><span lang="" about="/index.php/user/23" typeof="schema:Person" property="schema:name" datatype="">Emilia Gomez</span></span>
</span>
<span property="schema:dateCreated" content="2020-04-03T15:12:28+00:00" class="rdf-meta hidden"></span>
</div>
</header>
<div class="node--main-content">
<div property="schema:text" class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>The TROMPA project has as a main goal the enrichment of music public-domain archives. In these difficult days of confinement, some musical institutions are opening their music archives to facilitate remote access, from home, to their music spectacles. The TROMPA project consortium has made a compilation of these initiatives to provide recognition and contribute to their visibility. </p>
<p dir="ltr">We hope you will enjoy! </p>
<p>The TROMPA team </p></div>
<div class="field field--name-field-tags field--type-entity-reference field--label-above field--entity-reference-target-type-taxonomy-term clearfix">
<h3 class="field__label">Tags</h3>
<ul class='links field__items'>
<li><a href="index.php/news.html" property="schema:about" hreflang="en">News</a></li>
<li><a href="index.php/taxonomy/term/46.html" property="schema:about" hreflang="en">public-domain</a></li>
<li><a href="index.php/taxonomy/term/47.html" property="schema:about" hreflang="en">music</a></li>
<li><a href="index.php/taxonomy/term/48.html" property="schema:about" hreflang="en">audiovisual content</a></li>
<li><a href="index.php/taxonomy/term/49.html" property="schema:about" hreflang="en">confinement</a></li>
<li><a href="index.php/taxonomy/term/50.html" property="schema:about" hreflang="en">coronavirus</a></li>
</ul>
</div> <div class="node__links">
<ul class="links inline"><li class="node-readmore"><a href="index.php/covid.html" rel="tag" title="Music Content in the Public-domain in a Period of Confinement " hreflang="en">Read more<span class="visually-hidden"> about Music Content in the Public-domain in a Period of Confinement </span></a></li></ul> </div>
</div>
</div>
</div>
</article>
</div>
<div class="views-row">
<article data-history-node-id="108" role="article" about="/index.php/node/108" typeof="schema:Article" class="node node--type-article node--promoted node--view-mode-teaser clearfix">
<div class="node--content-container">
<div class="node--submitted-info
">
<div class="submitted-date">
<i class="fa fa-calendar hidden-lg hidden-md hidden-sm"></i>
<div class="month">Feb</div>
<div class="day">19</div>
<div class="year">2020</div>
</div>
<div class="comments-count">
<i class="fa fa-comment"></i>
<div class="comment-counter">0</div>
</div>
</div>
<div class="node--content clearfix">
<header>
<h2 class="node__title">
<a href="index.php/node/108.html" rel="bookmark"><span property="schema:name" class="field field--name-title field--type-string field--label-hidden">Update Orchestras/Content Owners Use Case </span>
</a>
</h2>
<span property="schema:name" content="Update Orchestras/Content Owners Use Case " class="rdf-meta hidden"></span>
<span property="schema:interactionCount" content="UserComments:0" class="rdf-meta hidden"></span>
<div class="node__meta">
<article typeof="schema:Person" about="/index.php/user/102" class="profile">
</article>
<span class="submitted-info">
By <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><span lang="" about="/index.php/user/102" typeof="schema:Person" property="schema:name" datatype="">Marcel van Tilburg</span></span>
</span>
<span property="schema:dateCreated" content="2020-02-19T16:09:16+00:00" class="rdf-meta hidden"></span>
</div>
</header>
<div class="node--main-content">
<div class="images-container clearfix">
<div class="image-preview clearfix">
<div class="image-wrapper clearfix">
<div class="field field--name-field-image field--type-image field--label-hidden field__item"> <a class="overlayed image-popup" href="index.php/node/108.html"><img property="schema:image" src="sites/default/files/styles/large/public/2020-06/RCO-4_credit-Anne-Dokter_klein.jpg%3Fitok=INmd6Aqp" width="750" height="500" alt="The Concertgebouworkest in rehearsal at the Amsterdam Concertgebouw" title="Concertgebouworkest (photo Anne Dokter)" typeof="foaf:Image" class="image-style-large" />
<span class="overlay"><i class="fa fa-plus"></i></span></a>
</div>
</div>
</div>
</div>
<div property="schema:text" class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item"><p><span><span>TROMPA opens up interesting new possibilities for orchestras, both as performers and as content owners. Renowned conductors interpret the same masterpieces in different ways, reflected </span></span><span><span>by annotated scores and orchestral parts provided to musicians for a given performance project. </span></span></p>
<p> </p></div>
<div class="field field--name-field-tags field--type-entity-reference field--label-above field--entity-reference-target-type-taxonomy-term clearfix">
<h3 class="field__label">Tags</h3>
<ul class='links field__items'>
<li><a href="index.php/content-owners.html" property="schema:about" hreflang="en">Content owners</a></li>
<li><a href="index.php/news.html" property="schema:about" hreflang="en">News</a></li>
</ul>
</div> <div class="node__links">
<ul class="links inline"><li class="node-readmore"><a href="index.php/node/108.html" rel="tag" title="Update Orchestras/Content Owners Use Case " hreflang="en">Read more<span class="visually-hidden"> about Update Orchestras/Content Owners Use Case </span></a></li></ul> </div>
</div>
</div>
</div>
</article>
</div>
<div class="views-row">
<article data-history-node-id="107" role="article" about="/node/107" typeof="schema:Article" class="node node--type-article node--promoted node--view-mode-teaser clearfix">
<div class="node--content-container">
<div class="node--submitted-info
">
<div class="submitted-date">
<i class="fa fa-calendar hidden-lg hidden-md hidden-sm"></i>
<div class="month">Feb</div>
<div class="day">19</div>
<div class="year">2020</div>
</div>
<div class="comments-count">
<i class="fa fa-comment"></i>
<div class="comment-counter">0</div>
</div>
</div>
<div class="node--content clearfix">
<header>
<h2 class="node__title">
<a href="node/107.html" rel="bookmark"><span property="schema:name" class="field field--name-title field--type-string field--label-hidden">TROMPA pilot for Music Enthusiasts will be available soon!</span>
</a>
</h2>
<span property="schema:name" content="TROMPA pilot for Music Enthusiasts will be available soon!" class="rdf-meta hidden"></span>
<span property="schema:interactionCount" content="UserComments:0" class="rdf-meta hidden"></span>
<div class="node__meta">
<article typeof="schema:Person" about="/user/101" class="profile">
</article>
<span class="submitted-info">
By <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><span lang="" about="/user/101" typeof="schema:Person" property="schema:name" datatype="">Nicolas Gutierrez</span></span>
</span>
<span property="schema:dateCreated" content="2020-02-19T07:12:32+00:00" class="rdf-meta hidden"></span>
</div>
</header>
<div class="node--main-content">
<div class="images-container clearfix">
<div class="image-preview clearfix">
<div class="image-wrapper clearfix">
<div class="field field--name-field-image field--type-image field--label-hidden field__item"> <a class="overlayed image-popup" href="node/107.html"><img property="schema:image" src="sites/default/files/styles/large/public/2020-02/dashboard.png%3Fitok=tUDj_CH2" width="750" height="500" alt="me-dashboard" typeof="foaf:Image" class="image-style-large" />
<span class="overlay"><i class="fa fa-plus"></i></span></a>
</div>
</div>
</div>
</div>
<div property="schema:text" class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>During the last six months, we've focused on refining the requirements and goals of the pilot to attract more contributors. We've done multiple workshops to evaluate the usability and users' perception of different demos.These workshops allowed us to refine the workflow of the application, and to include new features to engage users.</p></div>
<div class="field field--name-field-tags field--type-entity-reference field--label-above field--entity-reference-target-type-taxonomy-term clearfix">
<h3 class="field__label">Tags</h3>
<ul class='links field__items'>
<li><a href="music-enthusiasts.html" property="schema:about" hreflang="en">Music enthusiasts</a></li>
<li><a href="news.html" property="schema:about" hreflang="en">News</a></li>
</ul>
</div> <div class="node__links">
<ul class="links inline"><li class="node-readmore"><a href="node/107.html" rel="tag" title="TROMPA pilot for Music Enthusiasts will be available soon!" hreflang="en">Read more<span class="visually-hidden"> about TROMPA pilot for Music Enthusiasts will be available soon!</span></a></li></ul> </div>
</div>
</div>
</div>
</article>
</div>
<div class="views-row">
<article data-history-node-id="105" role="article" about="/node/105" typeof="schema:Article" class="node node--type-article node--promoted node--view-mode-teaser clearfix">
<div class="node--content-container">
<div class="node--submitted-info
">
<div class="submitted-date">
<i class="fa fa-calendar hidden-lg hidden-md hidden-sm"></i>
<div class="month">Feb</div>
<div class="day">17</div>
<div class="year">2020</div>
</div>
<div class="comments-count">
<i class="fa fa-comment"></i>
<div class="comment-counter">0</div>
</div>
</div>
<div class="node--content clearfix">
<header>
<h2 class="node__title">
<a href="node/105.html" rel="bookmark"><span property="schema:name" class="field field--name-title field--type-string field--label-hidden">The TROMPA pilot for singers, about to be ready for choirs</span>
</a>
</h2>
<span property="schema:name" content="The TROMPA pilot for singers, about to be ready for choirs" class="rdf-meta hidden"></span>
<span property="schema:interactionCount" content="UserComments:0" class="rdf-meta hidden"></span>
<div class="node__meta">
<article typeof="schema:Person" about="/user/99" class="profile">
</article>
<span class="submitted-info">
By <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><span lang="" about="/user/99" typeof="schema:Person" property="schema:name" datatype="">Alvaro Sarasua</span></span>
</span>
<span property="schema:dateCreated" content="2020-02-17T17:26:34+00:00" class="rdf-meta hidden"></span>
</div>
</header>
<div class="node--main-content">
<div class="images-container clearfix">
<div class="image-preview clearfix">
<div class="image-wrapper clearfix">
<div class="field field--name-field-image field--type-image field--label-hidden field__item"> <a class="overlayed image-popup" href="node/105.html"><img property="schema:image" src="sites/default/files/styles/large/public/2020-02/Captura de pantalla 2020-02-17 a las 18.27.39.png%3Fitok=dA82KWfP" width="750" height="500" alt="Screenshot of the TROMPA Choir Singers Pilot prototype" typeof="foaf:Image" class="image-style-large" />
<span class="overlay"><i class="fa fa-plus"></i></span></a>
</div>
</div>
</div>
</div>
<div property="schema:text" class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item"><p dir="ltr">In the <a href="choir-singers.html">TROMPA Choir singers use case</a>, we are using multi-lingual singing voice synthesis to support individual choir singers rehearsal. During the first two years of the project, we have identified the users requirements, developed a working prototype and improved the synthesis models. Now, we are almost ready to start sharing our tools with choir singers! But, how did we get here?</p></div>
<div class="field field--name-field-tags field--type-entity-reference field--label-above field--entity-reference-target-type-taxonomy-term clearfix">
<h3 class="field__label">Tags</h3>
<ul class='links field__items'>
<li><a href="choir-singers.html" property="schema:about" hreflang="en">Choir singers</a></li>
<li><a href="news.html" property="schema:about" hreflang="en">News</a></li>
<li><a href="taxonomy/term/29.html" property="schema:about" hreflang="en">Singers</a></li>
<li><a href="taxonomy/term/18.html" property="schema:about" hreflang="en">research</a></li>
<li><a href="taxonomy/term/27.html" property="schema:about" hreflang="en">Barcelona</a></li>
<li><a href="taxonomy/term/28.html" property="schema:about" hreflang="en">UPF</a></li>
<li><a href="taxonomy/term/22.html" property="schema:about" hreflang="en">Voctro Labs</a></li>
</ul>
</div> <div class="node__links">
<ul class="links inline"><li class="node-readmore"><a href="node/105.html" rel="tag" title="The TROMPA pilot for singers, about to be ready for choirs" hreflang="en">Read more<span class="visually-hidden"> about The TROMPA pilot for singers, about to be ready for choirs</span></a></li></ul> </div>
</div>
</div>
</div>
</article>
</div>
<div class="views-row">
<article data-history-node-id="104" role="article" about="/index.php/node/104" typeof="schema:Article" class="node node--type-article node--promoted node--view-mode-teaser clearfix">
<div class="node--content-container">
<div class="node--submitted-info
">
<div class="submitted-date">
<i class="fa fa-calendar hidden-lg hidden-md hidden-sm"></i>
<div class="month">Jan</div>
<div class="day">30</div>
<div class="year">2020</div>
</div>
<div class="comments-count">
<i class="fa fa-comment"></i>
<div class="comment-counter">0</div>
</div>
</div>
<div class="node--content clearfix">
<header>
<h2 class="node__title">
<a href="index.php/node/104.html" rel="bookmark"><span property="schema:name" class="field field--name-title field--type-string field--label-hidden"> Key software components published after 2-day technical meetup</span>
</a>
</h2>
<span property="schema:name" content=" Key software components published after 2-day technical meetup" class="rdf-meta hidden"></span>
<span property="schema:interactionCount" content="UserComments:0" class="rdf-meta hidden"></span>
<div class="node__meta">
<article typeof="schema:Person" about="/index.php/user/100" class="profile">
</article>
<span class="submitted-info">
By <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><span lang="" about="/index.php/user/100" typeof="schema:Person" property="schema:name" datatype="">David Linssen</span></span>
</span>
<span property="schema:dateCreated" content="2020-01-30T16:49:27+00:00" class="rdf-meta hidden"></span>
</div>
</header>
<div class="node--main-content">
<div class="images-container clearfix">
<div class="image-preview clearfix">
<div class="image-wrapper clearfix">
<div class="field field--name-field-image field--type-image field--label-hidden field__item"> <a class="overlayed image-popup" href="index.php/node/104.html"><img property="schema:image" src="sites/default/files/styles/large/public/2020-01/AAFDE60B-D486-4116-87C0-C68C74BB0DCC_1_105_c.jpeg%3Fitok=bT8ERwxP" width="750" height="500" alt="meeting participants sitting around a table with someone pointing to a screen that displays code" title="Developers discussing proposed solutions for TROMPA CE" typeof="foaf:Image" class="image-style-large" />
<span class="overlay"><i class="fa fa-plus"></i></span></a>
</div>
</div>
</div>
</div>
<div property="schema:text" class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>The Royal Concertgebouw Orchestra and Videodock hosted a two day meetup (20-21 Jan 20) for all TROMPA developers and developing partners to demonstrate, discuss and decide on the most recent versions of the TROMPA software components.<br />
Videodock presented the latest version of the TROMPA Multi-modal component, a toolkit that handles search and retrieval of data from the Contribution Environment to other applications. This enable user-facing applications to tap into the rich data that is stored within the shared Contributing Environment.</p></div>
<div class="field field--name-field-tags field--type-entity-reference field--label-above field--entity-reference-target-type-taxonomy-term clearfix">
<h3 class="field__label">Tags</h3>
<ul class='links field__items'>
<li><a href="index.php/news.html" property="schema:about" hreflang="en">News</a></li>
<li><a href="index.php/taxonomy/term/24.html" property="schema:about" hreflang="en">TROMPA</a></li>
<li><a href="index.php/taxonomy/term/34.html" property="schema:about" hreflang="en">Music annotation</a></li>
<li><a href="index.php/taxonomy/term/39.html" property="schema:about" hreflang="en">Technology</a></li>
</ul>
</div> <div class="node__links">
<ul class="links inline"><li class="node-readmore"><a href="index.php/node/104.html" rel="tag" title=" Key software components published after 2-day technical meetup" hreflang="en">Read more<span class="visually-hidden"> about Key software components published after 2-day technical meetup</span></a></li></ul> </div>
</div>
</div>
</div>
</article>
</div>
<div class="views-row">
<article data-history-node-id="103" role="article" about="/index.php/node/103" typeof="schema:Article" class="node node--type-article node--promoted node--view-mode-teaser clearfix">
<div class="node--content-container">
<div class="node--submitted-info
">
<div class="submitted-date">
<i class="fa fa-calendar hidden-lg hidden-md hidden-sm"></i>
<div class="month">Dec</div>
<div class="day">05</div>
<div class="year">2019</div>
</div>
<div class="comments-count">
<i class="fa fa-comment"></i>
<div class="comment-counter">0</div>
</div>
</div>
<div class="node--content clearfix">
<header>
<h2 class="node__title">
<a href="index.php/node/103.html" rel="bookmark"><span property="schema:name" class="field field--name-title field--type-string field--label-hidden">TROMPA at winterLAB, meeting on community and the critical use of technology</span>
</a>
</h2>
<span property="schema:name" content="TROMPA at winterLAB, meeting on community and the critical use of technology" class="rdf-meta hidden"></span>
<span property="schema:interactionCount" content="UserComments:0" class="rdf-meta hidden"></span>
<div class="node__meta">
<article typeof="schema:Person" about="/index.php/user/99" class="profile">
</article>
<span class="submitted-info">
By <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><span lang="" about="/index.php/user/99" typeof="schema:Person" property="schema:name" datatype="">Alvaro Sarasua</span></span>
</span>
<span property="schema:dateCreated" content="2019-12-05T13:01:13+00:00" class="rdf-meta hidden"></span>
</div>
</header>
<div class="node--main-content">
<div property="schema:text" class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item"><p dir="ltr"><a href="http://www.laboralcentrodearte.org/en/education/winterlab?set_language=en">winterLAB</a> is a program of presentations, round tables and workshops organized by <a href="http://www.laboralcentrodearte.org/en">Laboral</a>, an art and industrial creation center in Gijón (Spain). The event is aimed at exchanging community work experiences that foster the creative use of technology and bring the new media for creation and production closer to the public.</p></div>
<div class="field field--name-field-tags field--type-entity-reference field--label-above field--entity-reference-target-type-taxonomy-term clearfix">
<h3 class="field__label">Tags</h3>
<ul class='links field__items'>
<li><a href="index.php/news.html" property="schema:about" hreflang="en">News</a></li>
<li><a href="index.php/taxonomy/term/24.html" property="schema:about" hreflang="en">TROMPA</a></li>
<li><a href="index.php/taxonomy/term/22.html" property="schema:about" hreflang="en">Voctro Labs</a></li>
<li><a href="index.php/taxonomy/term/23.html" property="schema:about" hreflang="en">Voiceful</a></li>
<li><a href="index.php/taxonomy/term/25.html" property="schema:about" hreflang="en">Singing Synthesis</a></li>
</ul>
</div> <div class="node__links">
<ul class="links inline"><li class="node-readmore"><a href="index.php/node/103.html" rel="tag" title="TROMPA at winterLAB, meeting on community and the critical use of technology" hreflang="en">Read more<span class="visually-hidden"> about TROMPA at winterLAB, meeting on community and the critical use of technology</span></a></li></ul> </div>
</div>
</div>
</div>
</article>
</div>
<div class="views-row">
<article data-history-node-id="101" role="article" about="/index.php/node/101" typeof="schema:Article" class="node node--type-article node--promoted node--view-mode-teaser clearfix">
<div class="node--content-container">
<div class="node--submitted-info
">
<div class="submitted-date">
<i class="fa fa-calendar hidden-lg hidden-md hidden-sm"></i>
<div class="month">Oct</div>
<div class="day">30</div>
<div class="year">2019</div>
</div>
<div class="comments-count">
<i class="fa fa-comment"></i>
<div class="comment-counter">0</div>
</div>
</div>
<div class="node--content clearfix">
<header>
<h2 class="node__title">
<a href="index.php/node/101.html" rel="bookmark"><span property="schema:name" class="field field--name-title field--type-string field--label-hidden">TROMPA @ Workshop-Symposium in Methods for Music and Emotion</span>
</a>
</h2>
<span property="schema:name" content="TROMPA @ Workshop-Symposium in Methods for Music and Emotion" class="rdf-meta hidden"></span>
<span property="schema:interactionCount" content="UserComments:0" class="rdf-meta hidden"></span>
<div class="node__meta">
<article typeof="schema:Person" about="/user/98" class="profile">
</article>
<span class="submitted-info">
By <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><span lang="" about="/index.php/user/98" typeof="schema:Person" property="schema:name" datatype="">Juan Sebastian Gomez</span></span>
</span>
<span property="schema:dateCreated" content="2019-10-30T08:49:19+00:00" class="rdf-meta hidden"></span>
</div>
</header>
<div class="node--main-content">
<div class="images-container clearfix">
<div class="image-preview clearfix">
<div class="image-wrapper clearfix">
<div class="field field--name-field-image field--type-image field--label-hidden field__item"> <a class="overlayed image-popup" href="index.php/node/101.html"><img property="schema:image" src="sites/default/files/styles/large/public/2020-06/durham.jpg%3Fitok=UM3tBdK5" width="750" height="500" alt="Workshop-Symposium on Methods in Music and Emotion" title="Workshop-Symposium on Methods in Music and Emotion" typeof="foaf:Image" class="image-style-large" />
<span class="overlay"><i class="fa fa-plus"></i></span></a>
</div>
</div>
</div>
</div>
<div property="schema:text" class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>The Workshop-Symposium on Methods in Music and Emotion took place on the 14th of September 2019 at St. Chad’s College, Durham University, United Kingdom. Participants gave presentations focusing on research methodology deployed in experiments on the topic of music and emotion, with a primary interest in cross-cultural applications. Juan Sebastián Gómez Cañón (UPF) presented his work on emotion annotation analysis done in collaboration with Emilia Gómez (UPF/JRC), Perfecto Herrera (UPF), and Estefanía Cano (A*STAR).</p></div>
<div class="field field--name-field-tags field--type-entity-reference field--label-above field--entity-reference-target-type-taxonomy-term clearfix">
<h3 class="field__label">Tags</h3>
<ul class='links field__items'>
<li><a href="index.php/music-enthusiasts.html" property="schema:about" hreflang="en">Music enthusiasts</a></li>
<li><a href="index.php/news.html" property="schema:about" hreflang="en">News</a></li>
</ul>
</div> <div class="node__links">
<ul class="links inline"><li class="node-readmore"><a href="index.php/node/101.html" rel="tag" title="TROMPA @ Workshop-Symposium in Methods for Music and Emotion" hreflang="en">Read more<span class="visually-hidden"> about TROMPA @ Workshop-Symposium in Methods for Music and Emotion</span></a></li></ul> </div>
</div>
</div>
</div>
</article>
</div>
<div class="views-row">
<article data-history-node-id="100" role="article" about="/index.php/node/100" typeof="schema:Article" class="node node--type-article node--promoted node--view-mode-teaser clearfix">
<div class="node--content-container">
<div class="node--submitted-info
">
<div class="submitted-date">
<i class="fa fa-calendar hidden-lg hidden-md hidden-sm"></i>
<div class="month">Oct</div>
<div class="day">03</div>
<div class="year">2019</div>
</div>
<div class="comments-count">
<i class="fa fa-comment"></i>
<div class="comment-counter">0</div>
</div>
</div>
<div class="node--content clearfix">
<header>
<h2 class="node__title">
<a href="index.php/node/100.html" rel="bookmark"><span property="schema:name" class="field field--name-title field--type-string field--label-hidden">TROMPA at RecSys 2019</span>
</a>
</h2>
<span property="schema:name" content="TROMPA at RecSys 2019" class="rdf-meta hidden"></span>
<span property="schema:interactionCount" content="UserComments:0" class="rdf-meta hidden"></span>
<div class="node__meta">
<article typeof="schema:Person" about="/index.php/user/86" class="profile">
</article>
<span class="submitted-info">
By <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><span lang="" about="/index.php/user/86" typeof="schema:Person" property="schema:name" datatype="">Lorenzo Porcaro</span></span>
</span>
<span property="schema:dateCreated" content="2019-10-03T10:05:15+00:00" class="rdf-meta hidden"></span>
</div>
</header>
<div class="node--main-content">
<div property="schema:text" class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>The ACM Recommender Systems conference (<a href="https://recsys.acm.org">RecSys</a>) is the premier international forum for the presentation of new research results, systems and techniques in the broad field of recommender systems. As RecSys brings together the main international research groups working on recommender systems, along with many of the world’s leading e-commerce companies, it has become the most important annual conference for the presentation and discussion of recommender systems research.</p></div>
<div class="field field--name-field-tags field--type-entity-reference field--label-above field--entity-reference-target-type-taxonomy-term clearfix">
<h3 class="field__label">Tags</h3>
<ul class='links field__items'>
<li><a href="index.php/news.html" property="schema:about" hreflang="en">News</a></li>
<li><a href="index.php/music-enthusiasts.html" property="schema:about" hreflang="en">Music enthusiasts</a></li>
</ul>
</div> <div class="node__links">
<ul class="links inline"><li class="node-readmore"><a href="index.php/node/100.html" rel="tag" title="TROMPA at RecSys 2019" hreflang="en">Read more<span class="visually-hidden"> about TROMPA at RecSys 2019</span></a></li></ul> </div>
</div>
</div>
</div>
</article>
</div>
</div>
<nav class="pager" role="navigation" aria-labelledby="pagination-heading">
<h4 class="pager__heading visually-hidden">Pagination</h4>
<ul class="pager__items js-pager__items">
<li class="pager__item pager__item--previous">
<a href="news%3Fpage=0.html" title="Go to previous page" rel="prev">
<span class="visually-hidden">Previous page</span>
<span aria-hidden="true">‹‹</span>
</a>
</li>
<li class="pager__item is-active">
Page 2 </li>
<li class="pager__item pager__item--next">
<a href="news%3Fpage=2.html" title="Go to next page" rel="next">
<span class="visually-hidden">Next page</span>
<span aria-hidden="true">››</span>
</a>
</li>
</ul>
</nav>
<div class="feed-icons">
<a href="taxonomy/term/10/feed" class="feed-icon">
Subscribe to News
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<aside class="col-md-4 fix-sidebar-second">
<section id="sidebar-second" class="sidebar sidebar-second clearfix"
>
<div class="region region-sidebar-second">
<div id="block-dropdownlanguage" class="block block-dropdown-language block-dropdown-languagelanguage-interface">
<div class="content">
<div class="dropbutton-wrapper"><div class="dropbutton-widget"><ul class="dropdown-language-item dropbutton"><li class="en"><span class="language-link active-language" hreflang="en"><img class="language-icon" src="modules/languageicons/flags/en.png" width="16" height="12" alt="English" title="English" typeof="foaf:Image" />
English
</span></li><li class="es"><a href="es/news.html" class="language-link" hreflang="es"><img class="language-icon" src="modules/languageicons/flags/es.png" width="16" height="12" alt="Español" title="Español" typeof="foaf:Image" />
Español
</a></li><li class="ca"><a href="ca/news.html" class="language-link" hreflang="ca"><img class="language-icon" src="modules/languageicons/flags/ca.png" width="16" height="12" alt="Catalan" title="Catalan" typeof="foaf:Image" />
Catalan
</a></li><li class="nl"><a href="nl/news.html" class="language-link" hreflang="nl"><img class="language-icon" src="modules/languageicons/flags/nl.png" width="16" height="12" alt="Dutch" title="Dutch" typeof="foaf:Image" />
Dutch
</a></li><li class="de"><a href="de/news.html" class="language-link" hreflang="de"><img class="language-icon" src="modules/languageicons/flags/de.png" width="16" height="12" alt="Deutsch" title="Deutsch" typeof="foaf:Image" />
Deutsch