summaryrefslogtreecommitdiff
path: root/src/htdocs/conference/2024/index.xml
blob: e1c99fc92de033e42203e30e87fda60af4ef3f3e (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
<?xml version="1.0"?>
<!DOCTYPE xml
[
  <!ENTITY % site-entities SYSTEM "../../entities.site">
  %site-entities;
]>

<?xml-stylesheet href="../../page.xsl" type="text/xsl"?>
<page>
<title>GStreamer Conference 2024</title>

<body>

<style>
li {
  padding: 0px 0px 10px;
}
</style>

<table class="conference">
<tr><td width="60%">

<h1>GStreamer Conference 2024</h1>

  <h2>7-10 October 2024 · Montréal, Québec, Canada</h2>

<p>

<style>
.crop-photo{
    float:left;
    margin:.5em 10px .5em 0;
    overflow:hidden; /* this is important */
    position:relative; /* this is important too */
    border:1px solid #ccc;
    }
</style>

<table>
<tr>
  <td>
    <div class="crop-photo">
    <img src="montreal_banner.jpg"
         alt="Montréal"
         height="300"
         width="100%"
    />
    </div>
  </td>
</tr>
</table>
</p>

  <br/>

  <p>
    We're thrilled to announce that the <b>12th GStreamer Conference</b> will take place on Monday and Tuesday <b>7-8 October 2024</b> at the Concordia University Conference Centre in <b>Montréal, Canada</b>. The conference will be followed by a 2-day hackfest on Wednesday and Thursday <b>9-10 October 2024</b>.
  </p>

<!--
  <p>
  Talks will be recorded again by <a href="https://www.ubicast.eu/">Ubicast</a> and
  are available at <a href="https://gstconf.ubicast.tv/channels/#gstreamer-conference-2019">GStreamer Conference 2019 videos</a>
  </p>
  <p>
  Slides for some of the talks and the lightning talks can be found in the
  <a href="&site;/data/events/gstreamer-conference/2019/">GStreamer Conference 2019 slides</a>
  folder.
  </p>
-->

  <h2>Schedule</h2>
  <p>
  <a href="https://indico.freedesktop.org/event/9/timetable/?layout=room#all.detailed">Click here for the conference schedule</a>.
  </p>

<!--
  <h2>Live Streams</h2>
  <p>
  <ul>
  <li><a href="https://gstconf.ubicast.tv/lives/room-1/">Room 1</a></li>
  <li><a href="https://gstconf.ubicast.tv/lives/room-2/">Room 2</a></li>
  </ul>
  </p>
-->
  <h2>Details</h2>
  <p>
  The GStreamer Conference is a conference for developers, community members,
  decision-makers, industry partners, researchers, students and anyone else
  interested in the GStreamer multimedia framework or Open Source and
  cross-platform multimedia.
  </p>

  <h2>Who should attend?</h2>
  <p>
    Anyone interested in open source cross-platform multimedia is encouraged
    to join us at the GStreamer Conference 2024!
  </p>
  <p>
    Whether you are a hobbyist, app developer, researcher or student interested
    in the field of multimedia, or working for a company that is using or looking
    to use GStreamer in their products, this is the perfect event for you to network
    at and to learn more about the latest technological developments and project news,
    and to meet developers as well as the wider community.
  </p>

  <a id="registration"></a>

  <h2>Registration</h2>
  
  <p><b>Registration is now open!</b></p>

  <p>
    <b><a href="https://www.eventbrite.com/e/gstreamer-conference-2024-tickets-1007720307567">Sign up for the GStreamer Conference 2024 here</a></b>
  </p>

  <p>
  There are separate registration options for professionals, speakers and for students and hobbyists:
  </p>
  <p>
    <div style="margin-left:5%">
    <table width="80%" cellpadding="5">
      <tr><td><b>Professional (Regular)</b></td><td><b>375 CAD</b> (ca. 250 EUR / 280 USD) <b>+ ca. 17.5% in fees + taxes (variable)</b></td></tr>
      <tr><td><b>Professional (Supporter)</b></td><td><b>750 CAD</b> (ca. 500 EUR / 560 USD) <b>+ ca. 17.5% in fees + taxes (variable)</b></td></tr>
      <tr><td><b>Speakers (for non-lightning talks)</b></td><td><b>Free</b> (instructions will be sent by e-mail)</td></tr>
      <tr><td><b>Student/Hobbyist</b></td><td><b>Free or voluntary donation</b></td></tr>
    </table>
    </div>
  </p>

  <p>
    All tickets include <!-- lunch at the venue on both conference days
    as well as --> access to the social event on Monday evening.
  </p>

  <p>
    For those uncertain about whether to register as a professional or hobbyist,
    the general rule is that if your company pays for your travel or sponsors you, you
    are a professional, and if you personally pay you are a student or hobbyist.
    If in doubt drop us a mail or just register as hobbyist. The important
    thing is that you'll make it to the conference!
  </p>

  <p>
    <b>Speakers:</b> You will receive free registration! Details will be sent
    out by e-mail along with the talk acceptance notifications or shortly
    thereafter. Not that we will complain if you decide to buy a ticket of
    course.
  </p>

  <p>
    <b>Note for Quebec entities:</b> Please make sure to enter your QST number
    on the order form to avoid being charged sales tax, as Eventbrite won't be
    able to issue a proper tax receipt for any sales tax charged later.
  </p>

  <p>
    <b><a href="https://www.eventbrite.com/e/gstreamer-conference-2024-tickets-1007720307567">Sign up for the GStreamer Conference 2024 here</a></b>
  </p>

  <a id="talks-and-speakers"></a>

  <h2>Schedule and speakers list</h2>

<!--
  <p>
    <a href="schedule.html">Click here for the conference schedule</a>.
  </p>
-->

  <p>
    We have an exciting range of topics and speakers lined up for you again this year:
    <ul>


            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/332/">
            GStreamer State of the Union
            </a>
            <br />
            <small><i>Tim-Philipp Müller, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/378/">
            HLS master playlist management made easy
            </a>
            <br />
            <small><i>Sanchayan Maity, Asymptotic</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/333/">
            What's going on in my pipelines?
            </a>
            <br />
            <small><i>Guillaume Desmottes</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/374/">
            GStreamer Nervous System for AI Brain : Introducing Python Analytics
            </a>
            <br />
            <small><i>Aaron Boxer, Collabora</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/335/">
            New developments with the WebRTC crate
            </a>
            <br />
            <small><i>Mathieu Duponchelle, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/342/">
            Real-Time Network Audio with GStreamer on Windows
            </a>
            <br />
            <small><i>Taruntej Kanakamalla, Asymptotic</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/352/">
            GStreamer &amp; Rust: What has happened over the last 5 years
            </a>
            <br />
            <small><i>Sebastian Dröge, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/350/">
            It’s time for some clock rate matching
            </a>
            <br />
            <small><i>Arun Raghavan, Asymptotic</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/363/">
            Embedded audio policies made easy with WirePlumber
            </a>
            <br />
            <small><i>George Kiagiadakis, Collabora</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/336/">
            GStreamer Vulkan Video: 2024 edition
            </a>
            <br />
            <small><i>Stéphane Cerveau, Igalia; Victor Manuel Jáquez Leal, Igalia</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/345/">
            librice: a sans-IO ICE networking library
            </a>
            <br />
            <small><i>Matthew Waters, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/367/">
            Open Standards for Media including ST 2110 and IPMX
            </a>
            <br />
            <small><i>Dan Maloney, Matrox Video</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/377/">
            State of QUIC in GStreamer
            </a>
            <br />
            <small><i>Sanchayan Maity, Asymptotic</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/370/">
            Gst.WASM Launched
            </a>
            <br />
            <small><i>Jorge Zapata, Fluendo</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/344/">
            A New RTSP Source Element Written in Rust
            </a>
            <br />
            <small><i>Nirbheek Chauhan, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/346/">
            GStreamer NVIDIA memory in Jetson: looking for an efficient way to process video frames when handling raw CUDA kernels
            </a>
            <br />
            <small><i>Diego Nieto Munoz, Fluendo</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/368/">
            From GL to your Encoder, Zero-Copy Made Possible
            </a>
            <br />
            <small><i>Nicolas Dufresne, Collabora</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/379/">
            unixfd: Zero-copy multi-process pipeline
            </a>
            <br />
            <small><i>Xavier Claessens, Netflix</i></small>
            </li>
<!--
            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/362/">
            Interactive GLSL Shaders for 360° Video in Python
            </a>
            <br />
            <small><i>Yu You, Nokia</i></small>
            </li>
-->
            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/340/">
            GStreamer Meets GPAC: Enhancing GStreamer's Capabilities through GPAC Integration
            </a>
            <br />
            <small><i>Deniz Ugur, Motion Spell</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/337/">
            Update on Encrypted Media Extensions in GStreamer
            </a>
            <br />
            <small><i>Jordan Yelloz, Collabora</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/338/">
            Which plugin should I use on Windows?
            </a>
            <br />
            <small><i>Seungha Yang, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/349/">
            GstWebRTC / WebKit state of the union
            </a>
            <br />
            <small><i>Philippe Normand, Igalia; Carlos Bentzen, Igalia</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/369/">
            How we rewrote GStreamer in Elixir - 8 years later
            </a>
            <br />
            <small><i>Mateusz Front, Software Mansion</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/341/">
            Video Editing with GStreamer: an update
            </a>
            <br />
            <small><i>Thibault Saunier, Igalia</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/351/">
            GStreamer RTP sessions in Rust
            </a>
            <br />
            <small><i>Matthew Waters, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/366/">
            AI-assisted video encoding with AMD Alveo MA35D
            </a>
            <br />
            <small><i>Jakub Adam, Collabora</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/364/">
            TV channel in the cloud with GStreamer
            </a>
            <br />
            <small><i>Jurijs Satcs, Veset.tv</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/373/">
            Tea. Earl Grey. Hot. Automated Air-Ground Communication with GStreamer
            </a>
            <br />
            <small><i>Aaron Boxer, Collabora</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/361/">
            Real time volumetric video streaming
            </a>
            <br />
            <small><i>Sudarshan Bisht, Nokia</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/334/">
            Gst-Analytics:  Advancements in Machine Learning  and Analytics Pipeline
            </a>
            <br />
            <small><i>Daniel Morin, Collabora</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/339/">
            Experiences during the development of point cloud encoding for real-time 3D video streaming using GStreamer
            </a>
            <br />
            <small><i>Jozsef Szabo, Nokia</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/355/">
            HDR in GTK
            </a>
            <br />
            <small><i>Matthias Clasen, RedHat</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/358/">
            macOS and iOS Support: Recent History and Near Future
            </a>
            <br />
            <small><i>Nirbheek Chauhan, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/354/">
            AMD's Video Processing Engine
            </a>
            <br />
            <small><i>Harry Wentland, AMD</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/359/">
            Windows Graphics Stack Improvements – Direct3D12
            </a>
            <br />
            <small><i>Seungha Yang, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/371/">
            Raven AI Engine: a framework to develop AI computer vision GStreamer elements
            </a>
            <br />
            <small><i>Andoni Morales Alastruey, Fluendo</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/347/">
            Learnings of building a scaleable webrtc media pipeline in rust using gstreamer (cancelled)
            </a>
            <br />
            <small><i>Ramyak Mehra, Dyte</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/348/">
            LiveKit Support for GStreamer WebRTC Elements
            </a>
            <br />
            <small><i>Jordan Yelloz, Collabora</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/375/">
            Perfect Harmony: How we synchronized Audio and Video from Multiple Sources using GStreamer for Seamless Real-Time Streaming
            </a>
            <br />
            <small><i>Tokunbo Quaye, IPS; Michael Yackavage, IPS</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/343/">
            Developing and debugging on Windows, Fluendo experience.
            </a>
            <br />
            <small><i>Rubén Gonzalez, Fluendo; Diego Nieto Munoz, Fluendo</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/353/">
            Playback support, 2024 update
            </a>
            <br />
            <small><i>Edward Hervey, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/360/">
            Streamlining Video Presentation and Recording with GStreamer-Based Processing
            </a>
            <br />
            <small><i>Tomasz Mikołajczyk</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/356/">
            GStreamer and display clock synchronization
            </a>
            <br />
            <small><i>Jochen Henneberg, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/365/">
            Scenic and GStreamer on stage : collaborative theater adventures at the Society for Arts and Technology
            </a>
            <br />
            <small><i>Olivier Gauthier, Society for Arts and Technology</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/357/">
            GStreamer and VR
            </a>
            <br />
            <small><i>Jan Schmidt, Centricular</i></small>
            </li>

    </ul>
  </p>

  <p>
    <b>Lightning Talks:</b>
    <ul>
            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/322/">
            GQuark in GStreamer structures — What nonsense!
            </a>
            <br />
            <small><i>Sebastian Dröge, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/330/">
            Integration testing video with Test Containers by example
            </a>
            <br />
            <small><i>Johannes Nel, Genius Sports</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/317/">
            Silhouette, the ML/PipeWire-powered virtual camera device app
            </a>
            <br />
            <small><i>George Kiagiadakis, Collabora</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/329/">
            Last year's updates in Fluster
            </a>
            <br />
            <small><i>Rubén Gonzalez, Fluendo</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/326/">
            A new GStreamer plugin to leverage the skia 2D drawing library
            </a>
            <br />
            <small><i>Thibault Saunier, Igalia</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/321/">
            New RTP payloaders &amp; depayloaders in Rust
            </a>
            <br />
            <small><i>Sebastian Dröge, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/318/">
            How easy it is to write a video sink plugin (cancelled)
            </a>
            <br />
            <small><i>ramyak mehra, Dyte</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/385/">
            Using cefsrc for real time graphics production
            </a>
            <br />
            <small><i>Sid Sethupathi</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/316/">
            Closed Captions: Additional Things GStreamer Can Do
            </a>
            <br />
            <small><i>Matthew Waters, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/320/">
            Is an H264 encoder base class for hardware accelerated API possible?
            </a>
            <br />
            <small><i>Victor Manuel Jáquez Leal, Igalia</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/315/">
            Effects of a GStreamer version upgrade on Yocto-based application
            </a>
            <br />
            <small><i>Michael Yackavage, IPS</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/319/">
            GstVA updates
            </a>
            <br />
            <small><i>Victor Manuel Jáquez Leal, Igalia</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/324/">
            GStreamer plugin updates on webOS as a platform
            </a>
            <br />
            <small><i>Seungwook Cha, LG Electronics</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/327/">
            An update on GStreamer validate
            </a>
            <br />
            <small><i>Thibault Saunier, Igalia</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/328/">
            Fluendo and Cerbero, testing challenges
            </a>
            <br />
            <small><i>Jorge Zapata, Fluendo</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/325/">
            Yet another V4L2 update
            </a>
            <br />
            <small><i>Nicolas Dufresne, Collabora</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/323/">
            A new Windows web browser source plugin - webview2
            </a>
            <br />
            <small><i>Seungha Yang, Centricular</i></small>
            </li>

            <li>
            <a href="https://indico.freedesktop.org/event/9/contributions/376/">
            Seeking Perfection: Challenges and Solution attempts in Implementing HLS Stream Seeking with RTP Synchronization Using GStreamer
            </a>
            <br />
            <small><i>Tokunbo Quaye, IPS</i></small>
            </li>

            <li>...and more to come</li>
            <li><i>Submit <u>your</u> lightning talk now!</i></li>
    </ul>
  </p>

  <a id="lightning-talks"></a>

  <h2>Showcase or Lightning Talks</h2>
  <p>
    There will again be opportunities for short lightning talks for those who
    do not wish to present a full talk, but just want to showcase something
    they're working on, or present a problem or challenge they are facing or
    have solved, and that they think might be interesting for others to hear
    about.
  </p>
  <p>
    Want to submit a ca. 5-minute mini-talk for our <i>lightning talk</i>/<i>showcase</i> event?
  </p>
  <p>
    Please submit all lightning talks through the <a href="https://indico.freedesktop.org/event/9/">GStreamer Conference 2024 Talk Submission Portal</a>.
  </p>
  <p>
    You can log in using your existing freedesktop.org GitLab account if you have one, or register a new account with the system.
    If you have problems receiving your verification e-mail try a non-gmail.com address. Logging in via gitlab might also require a few tries.
  </p>
  <p>
    There is no deadline for Lightning Talk submissions, slots will be
    allocated on a first-come first-serve basis.
  </p>

<!--
  <h2>Social Events</h2>

-->
  <a id="hackfest"></a>

  <h2>GStreamer hackfest</h2>
  <p>
    There will be a hackfest just after the conference, on Wednesday and Thursday
    9-10 October 2024.
  </p>
  <p>
    <b>New this year</b>: The GStreamer Conference and Hackfest will be co-located with <a href="https://indico.freedesktop.org/event/6/">XDC 2024</a>, in the same location as the conference Concordia University Conference Centre.
  </p>

  <a id="sponsoring"></a>

  <h2>Sponsorship Opportunities</h2>
  <p>
  The GStreamer Conference 2024 is only possible thanks to the generous
  financial support from our sponsors.
  </p>
  <p>
  For this year's sponsorship opportunities please refer to
  the <a href="&site;/conference/2024/gstreamer-conference-sponsor-brief-2024.pdf">sponsor brief (PDF)</a>
  or <a href="mailto:sponsors@gstreamer-foundation.org">get in touch</a>.
  </p>
  <p>
  Sponsorship proceeds are not only used to put on the conference and hackfests, but also support our extensive CI infrastructure.
  </p>

  <h2>City</h2>
  <p>
  This year's conference will take place in
  <a href="https://en.wikipedia.org/wiki/Montréal">Montréal</a>, Québec, Canada.
  </p>

<!--
  <p>
  <i>Getting there</i>
  </p>
  <p>
  <b>By air to Montréal-Trudeau International Airport</b>
  </p>
-->
  <a id="venue"></a>

  <h2>Venue</h2>
  <p>
  The conference will take place at: <br/>
  <a href="https://www.concordia.ca/hospitality/hospitality-venues/concordia-conference-centre.html">Concordia University Conference Centre</a><br/>
  John Molson School of Business<br/>
  1450 rue Guy<br/>
  Montréal, Québec<br/>
  Canada, H3H 0A1<br/>
  </p>
  <p>
    <iframe width="425" height="350" src="https://www.openstreetmap.org/export/embed.html?bbox=-73.58084142208101%2C45.494273703073645%2C-73.57730090618135%2C45.49592259358127&amp;layer=mapnik" style="border: 1px solid black"></iframe><br/><small><a href="https://www.openstreetmap.org/#map=19/45.49510/-73.57907">View Larger Map</a></small>
  </p>

  <a id="visa-invitation-letters"></a>

  <h2>Invitation Letter</h2>
  <p>
  If you need an invitation letter for visa application purposes, please
  <a href="mailto:conference-invitations@gstreamer-foundation.org">get in touch</a>.
  </p>

  <a id="cfp"></a>

  <h2>Call for Presentations</h2>
<!--
  <p><b>
  The call for presentations is now open for talk proposals and lightning talks.
  </b></p>
  <p><b>
  Please submit your talk now!
  </b></p>
  <p>
  The initial submission needs to be only a couple of sentences or paragraphs
  describing the talk you want to give and the desired length of your talk.
  </p>
  <p>
  Please allow at least 5 minutes for questions at the end as well.
  </p>
  <p>
  You will still be able to edit and refine your talk proposal after the
  initial submission, so there's no need to hold off until the last minute to
  get it perfect.
  </p>
  <p>
  <b>The talk submission deadline is Monday, 2 September 2024 23:59h!</b>
  </p>
-->
<!--
  <p>
  <b>The talk submission deadline has been extended and is 30 September 2019 for second round slots!</b>
  </p>
-->
<!--
  <p>
  Lightning talks can be submitted until the day of the conference.
  </p>
  <p>
  Talks can be on almost anything multimedia related, ranging from talks about
  applications to challenges in the lower levels in the stack or hardware.
  </p>

  <p>
  You can request a slot for one of the following durations:

    <li>5 minutes (Lightning Talks)</li>
    <li>20 minutes</li>
    <li>30 minutes</li>
    <li>40 minutes</li>

  including questions.
  </p>

  <p>
  We want to hear from you, what you are working on, what you are using
  GStreamer for, what difficulties you have encountered and how you solved them,
  what your plans are, what you like, what you dislike, how to improve things!
  </p>
  <p>
  Please submit all proposals through the <a href="https://indico.freedesktop.org/event/9/">GStreamer Conference 2024 Talk Submission Portal</a>.
  </p>
  <p>
  You can log in using your existing freedesktop.org GitLab account if you have one, or register a new account with the system.
  </p>
-->

  <p>
  The call for presentations is now closed.
  </p>
  <p>
  Anyone who has submitted a talk proposal should receive an e-mail letting
  them know whether their proposal has been accepted in the coming days.
  Thank you to everyone who submitted a proposal.
  </p>
  <p>
  If you had problems submitting your talk at the last minute via Indico,
  please <a href="mailto:conference@gstreamer-foundation.org">get in touch</a>
  as soon as possible and we'll see what we can do.
  </p>
  <p>
  Lightning talks may still be proposed, see above for more details.
  </p>

  <h2>Social Events</h2>

  <h3>Sunday: Welcome drinks and/or food at McKibbin's</h3>

  <p>
    Join us for some drinks and/or food at McKibbin's, an Irish Pub
  </p>
  <p>
    We'll be there from 19:00 onwards. Food and drinks will be
    available for purchase, credit cards are accepted. There are
    vegetarian and vegan options.
  </p>
  <p>
    We have a reserved space for the GStreamer Conference on the second floor.
  </p>

  <p>
    <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2796.6565391210274!2d-73.57980892227627!3d45.49686073125672!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4cc91a6a72a57653%3A0x378f332555590f1f!2zTWNLaWJiaW7igJlz!5e0!3m2!1sen!2sca!4v1727903258301!5m2!1sen!2sca" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
  </p>

  <h3>Monday: Social Event with Food and Drinks at Les 3 Brasseurs - Saint-Paul</h3>

   <p>
     Our main social event will be on Monday at Les 3 Brasseurs on
     Saint-Paul in Old Montréal from 19:30 until
     late.
   </p>
   <p>
     Food and drinks will be provided (many thanks to our
     sponsors!), including vegetarian and vegan options.
   </p>

   <p>
     The venue can be reached by metro or walking.
   </p>

  <p>
    <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d5592.32866706023!2d-73.55567012227604!3d45.506770430595175!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4cc91a56577e5497%3A0x80033050a5c3516c!2s3%20Brasseurs%20Saint-Paul!5e0!3m2!1sen!2sca!4v1727903391366!5m2!1sen!2sca" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
  </p>

  <h3>Tuesday: Networking events with the Montreal Digital arts community</h3>

  <p>
    This year, we're invited to a bonus event at the Société des Arts
    Technologiques (SAT), sponsored by the SAT and Collabora.
  </p>
  <p>
    The doors open at 18:00 and goes until 21:00. The main panel is
    around 19:00. It takes places at the SAT, in the heart of
    <i>Quartier des Spectacles</i>, right next to Chinatown. Along
    with a panel with members of both communities, there will be a
    chance to chat and have a drink.
  </p>

  <p>
    The SAT can be reached through the Green line of the metro, at the <i>Saint-Laurent</i> stations.
  </p>

  <p>
    <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d5592.052337885627!2d-73.56536102227605!3d45.509551830409286!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4cc91a4e0c746d9f%3A0x7660ab5cfd2ecc15!2sSociety%20for%20Arts%20and%20Technology%20%5BSAT%5D!5e0!3m2!1sen!2sca!4v1727903635210!5m2!1sen!2sca" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
  </p>

  <a id="coc"></a>

  <h2>Code of Conduct and Anti-Harrassment Policy</h2>
  <h3>Policy</h3>
  <p>
  The GStreamer project and the conference organisers are dedicated to
  providing a harassment-free conference experience for everyone.
  We do not tolerate harassment of conference participants in any form.
  </p>
  <p>
  Harassment includes, but is not limited to, offensive verbal comments,
  sexual images in public spaces, deliberate intimidation, stalking, following,
  harassing photography or recording, sustained disruption of talks or other
  events, inappropriate physical contact, and unwelcome sexual attention.
  Participants asked to stop any harassing behaviour are expected to comply
  immediately. We expect participants to follow these rules at all conference
  venues, hackfest venues, and conference-related social events.
  </p>
  <p>
  If a participant engages in harassing behaviour, the conference organisers
  and/or their delegates may take any action they deem appropriate, including
  warning the offender or expulsion from the conference. If you are being
  harassed, notice that someone else is being harassed, or have any other
  concerns, please contact a conference organiser or member of the
  code of conduct committee below immediately.
  </p>
  <h3>Reporting Breaches</h3>
  <p>
  Breaches of the code of conduct should be reported either by e-mail via
  <a href="mailto:code-of-conduct@gstreamer.org">code-of-conduct@gstreamer.org</a>,
  or by contacting one of the following people:
  <ul>
  <li>Mark Filion (mfilion)</li>
  <li>Olivier Crête (ocrete)</li>
  <li>Alicia Boya García (alicia)</li>
  <li>Andoni Morales Alastruey (ylatuya)</li>
  <li>Nirbheek Chauhan (nirbheek)</li>
  <li>Tim Müller (__tim)</li>
  <li>Xabier Rodriguez Calvar (calvaris)</li>
  </ul>
  </p>
  <p>
  See <a href="https://www.x.org/wiki/XorgFoundation/Policies/HarassmentDetails/">here</a>
  for implementation details and guidelines.
  </p>
  <p>
  This anti-harassment policy is based on the
  <a href="https://indico.freedesktop.org/event/4/page/26-code-of-conduct">XDC 2024 code of conduct</a>
  which in turn is based on the example policy from the
  <a href="http://geekfeminism.wikia.com/wiki/Conference_anti-harassment/Policy">Geek Feminism wiki</a>,
  created by the <a href="http://adainitiative.org/">Ada Initiative</a> and other volunteers.
  </p>

  <a id="contact"></a>

  <h2>GStreamer Conference Contact</h2>
  <p>
  If you have any questions about the GStreamer Conference or are considering
  <a href="&site;/conference/2024/gstreamer-conference-sponsor-brief-2024.pdf">becoming a sponsor</a>
  please <a href="mailto:conference@gstreamer-foundation.org">get in touch</a>.
  </p>

  <a id="news"></a>

  <h2>Conference News and Updates</h2>
  <p>
    <i>2024-October-03</i>: Published the details of the social events.
  </p>
  <p>
    <i>2024-September-30</i>: The conference schedule has now been published.
  </p>
  <p>
    <i>2024-September-19</i>: The full list of talks and speakers has been published. If anything looks off or needs changing, please send us an e-mail or ping us on Matrix, thanks!
  </p>
  <p>
    <i>2024-September-10</i>: An initial list of lightning talks has been published. The full list of talks and speakers will be available in due course once proposals have been reviewed and speakers been notified.
  </p>
  <p>
    <i>2024-September-05</i>: Registration is now open! Sign up for the GStreamer Conference 2024 <a href="https://www.eventbrite.com/e/gstreamer-conference-2024-tickets-1007720307567">here</a>. Speakers should wait for e-mail instructions.
  </p>
  <p>
    <i>2024-September-03</i>: The call for presentations is now closed, but lightning talks may still be submitted. Speakers will be notified shortly. Thank you to everyone who has submitted a talk. We have a phenomenal range of topics this year, stay tuned for updates. If you had problems submitting your talk at the last minute via Indico, please <a href="mailto:conference@gstreamer-foundation.org">get in touch</a> and we'll see what we can do.
  </p>
  <p>
    <i>2024-September-03</i>: We're very pleased to see <b><a href="https://fluendo.com">Fluendo</a></b> return as sponsor this year, at Silver level!
  </p>
  <p>
    <i>2024-August-30</i>: The GStreamer project is excited to have <b><a href="https://www.geniussports.com">Genius Sports</a></b> sponsor for the first time, at Gold level!
  </p>
  <p>
    <i>2024-August-29</i>: Ticket prices have been added, expect registration to open shortly!
  </p>
  <p>
    <i>2024-August-21</i>: We're thrilled to welcome <b><a href="https://cablecast.tv">Cablecast</a></b> as first-time sponsor this year, at Silver level!
  </p>
  <p>
    <i>2024-August-20</i>: The GStreamer project is happy to see <b><a href="https://axis.com">Axis Communications</a></b> sponsor the conference again at Gold level this year!
  </p>
  <p>
    <i>2024-August-15</i>: We're excited to see <b><a href="https://pexip.com/">Pexip</a></b> return again as Platinum sponsor this year!
  </p>
  <p>
    <i>2024-August-08</i>: The GStreamer project welcomes <b><a href="https://sat.qc.ca/">la SAT</a></b> (Société des Arts Technologiques) as new Gold level sponsor this year!
  </p>
  <p>
    <i>2024-August-02</i>: We're pleased to have <b><a href="https://asymptotic.io">Asymptotic</a></b> sponsor the conference again at Silver level this year!
  </p>
  <p>
    <i>2024-August-01</i>: The Call for Presentations is now open, please submit your talk proposals now!
  </p>
  <p>
    <i>2024-July-24</i>: The GStreamer project is delighted to see <b><a href="https://laerdal.com">Laerdal Labs</a></b> sponsor the conference again at Silver level this year!
  </p>
  <p>
    <i>2024-July-19</i>: The GStreamer project welcomes back <b><a href="https://centricular.com">Centricular</a></b> as Gold level sponsor this year.
  </p>
  <p>
    <i>2024-July-19</i>: We're thrilled to see <b><a href="https://www.igalia.com/">Igalia</a></b> return Platinum level sponsor this year!
  </p>
  <p>
    <i>2024-July-19</i>: The GStreamer project is excited to see <b><a href="https://www.collabora.com">Collabora</a></b> return as a Platinum sponsor this year!
  </p>
  <p>
    <i>2024-July-18</i>: Visa invitation letter section added
  </p>
  <p>
    <i>2024-July-18</i>: <a href="&site;/conference/2024/gstreamer-conference-sponsor-brief-2024.pdf">Sponsorship brief</a> available
  </p>
  <p>
    <i>2024-May-08</i>: Venue announced: <a href="https://www.concordia.ca/hospitality/hospitality-venues/concordia-conference-centre.html">Concordia University Conference Centre</a>, Montréal, Québec, Canada.
  </p>
  <p>
    <i>2024-May-08</i>: Initial announcement.
  </p>

  <h1>Past GStreamer Conferences</h1>
  <ul>
    <li><a href="../2023/index.html">25-26 September 2023 · Palexco Convention Centre · A Coruña, Spain</a></li>
    <li><a href="../2019/index.html">31 October - 1 November 2019 · L'Embarcadère · Lyon, France</a></li>
    <li><a href="../2018/index.html">25-26 October 2018 · Summerhall · Edinburgh, Scotland, UK</a></li>
    <li><a href="../2017/index.html">21-22 October 2017 · Node5 · Prague, Czech Republic</a></li>
    <li><a href="../2016/index.html">10-11 October 2016 · betahaus · Berlin, Germany</a></li>
    <li><a href="../2015/index.html">8-9 October 2015 · The Convention Centre Dublin · Dublin, Ireland</a></li>
    <li><a href="../2014/index.html">16-17 October 2014 · Congress Centre Düsseldorf · Düsseldorf, Germany</a></li>
    <li><a href="../2013/index.html">22-23 October 2013 · Edinburgh International Conference Centre · Edinburgh, Scotland, UK</a></li>
    <li><a href="../2012/index.html">27-28 August 2012 · Sheraton San Diego Hotel &amp; Marina · San Diego, USA</a></li>
    <li><a href="../2011/index.html">24-25 October 2011 · Clarion Congress Hotel · Prague, Czech Republic</a></li>
    <li><a href="../2010/index.html">26 October 2010 · University Arms Hotel · Cambridge, UK</a></li>
  </ul>

</td>
<td valign="top" class="gstconf-sponsorlogo" width="15%">
  <h1>Sponsors</h1>
  <h2>Platinum Sponsors</h2>

  <p class="gstconf-sponsorlogo">
    <a href="https://www.collabora.com"><img src="sponsor_collabora_02_rgb_2024.png" alt="Collabora" width="85%"/></a>
  </p>

  <p class="gstconf-sponsorlogo">
    <a href="https://www.igalia.com"><img src="sponsor_igalia_2015_2019x720.png" alt="Igalia" width="85%" /></a>
  </p>

  <p class="gstconf-sponsorlogo">
    <a href="https://www.pexip.com"><img src="sponsor_pexip_2019_965x261.png" alt="Pexip" width="85%" /></a>
  </p>

  <h2 style="padding:1em 0 0 0">Gold Sponsors</h2>

  <p class="gstconf-sponsorlogo">
    <a href="https://www.centricular.com"><img src="sponsor_centricular_753x125.png" alt="Centricular" width="100%" /></a>
  </p>
  <p class="gstconf-sponsorlogo">
    <a href="https://sat.qc.ca/"><img src="sponsor_sat_2025_2630x644.png" alt="Société des arts technologiques" width="100%" /></a>
  </p>

  <p class="gstconf-sponsorlogo">
    <a href="https://www.axis.com"><img src="sponsor_axis.png" alt="Axis Communications" width="100%" /></a>
  </p>

  <p class="gstconf-sponsorlogo">
    <a href="https://www.geniussports.com/"><img src="sponsor_genius_sports.png" alt="Genius Sports" width="100%" /></a>
  </p>

  <h2 style="padding:1em 0 0 0">Silver Sponsors</h2>

  <p class="gstconf-sponsorlogo">
    <a href="https://laerdal.com"><img src="sponsor_laerdal_2024.png" alt="Laerdal Labs" width="90%" /></a>
  </p>

<!--
  <p style="padding:0px 0px; height: 170px">
    <a href="https://www.zeiss.com"><img src="sponsor_zeiss.png" alt="Zeiss" height="200" width="200" /></a>
  </p>

  <p style="padding:0px 0px">
    <a href="https://ridgerun.com"><img src="sponsor_ridgerun.png" alt="RidgeRun" height="130" /></a>
  </p>
  -->

  <p class="gstconf-sponsorlogo">
    <a href="https://asymptotic.io"><img src="sponsor_asymptotic_2024.png" alt="asymptotic" width="100%" /></a>
  </p>

  <p class="gstconf-sponsorlogo">
    <a href="https://cablecast.tv"><img src="sponsor_cablecast.png" alt="Cablecast" width="100%" /></a>
  </p>

  <p class="gstconf-sponsorlogo">
    <a href="https://fluendo.com"><img src="sponsor_fluendo_1060x200.png" alt="Fluendo" width="100%" /></a>
  </p>

<!--
  <p style="padding:10px 0px">
    <a href="https://facebook.com"><img src="sponsor_facebook_960x263.png" alt="Facebook" height="75" /></a>
  </p>
  -->
<!--
  <h2>Special Media Partner</h2>
  <p style="padding:10px 0px">
    <a href="https://www.ubicast.eu/"><img src="sponsor_ubicast_1059x292.png" alt="UbiCast" height="75" /></a>
  </p>
  <h2>Press Partners</h2>
  <p style="padding:10px 0px">
    <a href="https://lwn.net"><img src="lwn-logo-gstconf2016.png" alt="LWN" height="99" width="300" /></a>
  </p>
-->
  <p>
    <small>
    Interested in <a href="&site;/conference/2024/gstreamer-conference-sponsor-brief-2024.pdf">becoming a sponsor</a>?
    </small>
  </p>
</td>

</tr>
</table>

</body>
</page>