-
Notifications
You must be signed in to change notification settings - Fork 26
/
landscape.yml
1770 lines (1749 loc) · 99.2 KB
/
landscape.yml
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
landscape:
- category:
name: Imaging and Color
subcategories:
- subcategory:
name: Color Science
items:
- item:
name: 'ACES: Academy Color Encoding System'
homepage_url: https://www.oscars.org/science-technology/sci-tech-projects/aces
repo_url: https://github.com/ampas/aces-dev
logo: aces.svg
crunchbase: https://www.crunchbase.com/organization/the-academy-of-motion-picture-arts-and-sciences
- item:
name: Color Transformation Language (CTL)
homepage_url: https://www.oscars.org/science-technology/sci-tech-projects/color-transformation-language
repo_url: https://github.com/ampas/CTL
logo: ctl.svg
crunchbase: https://www.crunchbase.com/organization/the-academy-of-motion-picture-arts-and-sciences
- item:
name: Colour
homepage_url: https://www.colour-science.org/
repo_url: https://github.com/colour-science/colour
logo: colour.svg
crunchbase: https://www.crunchbase.com/organization/colour-science
- item:
name: PhysLight
homepage_url: https://github.com/wetadigital/physlight
repo_url: https://github.com/wetadigital/physlight
logo: PhysLight.svg
crunchbase: https://www.crunchbase.com/organization/weta-digital
- subcategory:
name: Image Formats, I/O, and Processing Libraries
items:
- item:
name: camdkit
homepage_url: https://github.com/SMPTE/ris-osvp-metadata-camdkit
repo_url: https://github.com/SMPTE/ris-osvp-metadata-camdkit
logo: camdkit.svg
crunchbase: https://www.crunchbase.com/organization/smpte
- item:
name: depix
homepage_url: https://github.com/guerilla-di/depix
repo_url: https://github.com/guerilla-di/depix
logo: depix.svg
crunchbase: https://www.crunchbase.com/organization/guerilla-di
- item:
name: FFmpeg
homepage_url: https://ffmpeg.org/
repo_url: https://github.com/FFmpeg/FFmpeg
project_org: https://github.com/FFmpeg
url_for_bestpractices: https://git.ffmpeg.org/ffmpeg.git
logo: ffmpeg.svg
crunchbase: https://www.crunchbase.com/organization/ffmpeg
- item:
name: gatling
homepage_url: https://github.com/pablode/gatling
repo_url: https://github.com/pablode/gatling
logo: gatling.svg
organization:
name: Pablo Delgado Krämer
- item:
name: Imagemagick
homepage_url: https://imagemagick.org/script/index.php
repo_url: https://github.com/ImageMagick/ImageMagick
logo: ImageMagick_logo.svg
crunchbase: https://www.crunchbase.com/organization/imagemagick-studio-llc
- item:
name: LGL - Large Graph Layout
homepage_url: https://www.opte.org/
repo_url: https://github.com/TheOpteProject/LGL
logo: lgl.svg
crunchbase: https://www.crunchbase.com/organization/netography-com
- item:
name: libitmf
homepage_url: https://www.immersivealliance.org/download/download-itmf/
repo_url: https://github.com/ImmersiveAlliance/libitmf
logo: libitmf.svg
organization:
name: Immersive Digital Experiences Alliance
- item:
name: OpenCV
homepage_url: https://opencv.org
repo_url: https://github.com/opencv/opencv
logo: opencv.svg
twitter: https://twitter.com/opencvlibrary
crunchbase: https://www.crunchbase.com/organization/open-source-vision-foundation
- item:
name: OpenMVG
homepage_url: https://opensource.mikrosimage.eu/
repo_url: https://github.com/openMVG/openMVG
logo: open-mvg.svg
twitter: https://twitter.com/mikrosanimation
crunchbase: https://www.crunchbase.com/organization/mikros-image
- item:
name: pfstools
homepage_url: https://sourceforge.net/projects/pfstools
repo_url: https://github.com/Steve132/pfstools
logo: pfstools.svg
crunchbase: https://www.crunchbase.com/organization/max-planck-institute-for-informatics
- item:
name: Ptex
homepage_url: http://ptex.us/
repo_url: https://github.com/wdas/ptex
logo: ptex.svg
crunchbase: https://www.crunchbase.com/organization/walt-disney-animation-studios
- item:
name: PySceneDetect
homepage_url: http://bcastell.com/projects/PySceneDetect/
repo_url: https://github.com/Breakthrough/PySceneDetect
logo: pyscenedetect.svg
crunchbase: https://www.crunchbase.com/organization/pyscenedetect
- item:
name: sequencer
homepage_url: https://github.com/guerilla-di/sequencer
repo_url: https://github.com/guerilla-di/sequencer
logo: sequencer.svg
crunchbase: https://www.crunchbase.com/organization/guerilla-di
- item:
name: three.js
homepage_url: https://threejs.org/
repo_url: https://github.com/mrdoob/three.js
logo: threejs.svg
organization:
name: Three.js
- item:
name: Video Multi-Method Assessment Fusion (VMAF)
homepage_url: https://github.com/Netflix/vmaf
repo_url: https://github.com/Netflix/vmaf
license: BSD-2-Clause Plus Patent License
additional_repos:
- repo_url: https://github.com/Netflix/vmaf_resource
logo: vmaf.svg
crunchbase: https://www.crunchbase.com/organization/netflix
- subcategory:
name: Display and Review
items:
- item:
name: DJV Imaging
homepage_url: https://darbyjohnston.github.io/DJV/
repo_url: https://github.com/darbyjohnston/DJV
logo: djv.svg
organization:
name: Darby Johnston
- item:
name: Jeri
homepage_url: https://jeri.io/
repo_url: https://github.com/disneyresearch/jeri
logo: jeri.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/disney-research
- item:
name: mrv2
homepage_url: https://mrv2.sourceforge.io
repo_url: https://github.com/ggarra13/mrv2
logo: mrv2.svg
crunchbase: https://www.crunchbase.com/organization/film-aura
- item:
name: Open RV
homepage_url: https://aswf-openrv.readthedocs.io
repo_url: https://github.com/AcademySoftwareFoundation/OpenRV
logo: openrv.svg
crunchbase: https://www.crunchbase.com/organization/academy-software-foundation
extra:
artwork_url: https://artwork.aswf.io/projects/openrv/
- item:
name: tlRender
homepage_url: https://github.com/darbyjohnston/tlRender
repo_url: https://github.com/darbyjohnston/tlRender
logo: tlrender.svg
organization:
name: Darby Johnston
- subcategory:
name: Interactive Compositing and Painting
items:
- item:
name: AFX Nuke Gizmos
homepage_url: https://github.com/AuthorityFX/afx-nuke-gizmos
repo_url: https://github.com/AuthorityFX/afx-nuke-gizmos
logo: AFX-Nuke-Gizmos.svg
crunchbase: https://www.crunchbase.com/organization/authorityfx
- item:
name: AFX Nuke Plugins
homepage_url: https://github.com/AuthorityFX/afx-nuke-plugins
repo_url: https://github.com/AuthorityFX/afx-nuke-plugins
logo: AFX-Nuke-Plugins.svg
crunchbase: https://www.crunchbase.com/organization/authorityfx
- item:
name: AFX Nuke Tools
homepage_url: https://github.com/AuthorityFX/afxnuketools
repo_url: https://github.com/AuthorityFX/afxnuketools
logo: AFX-Nuke-Tools.svg
crunchbase: https://www.crunchbase.com/organization/authorityfx
- item:
name: Aton
homepage_url: http://sosoyan.github.io/Aton/
repo_url: https://github.com/Sosoyan/Aton
logo: aton.svg
crunchbase: https://www.crunchbase.com/organization/vahan-sosoyan
- item:
name: Cinepaint
homepage_url: http://cinepaint.org/
repo_url: https://github.com/archont00/cinepaint-oyranos
logo: cinepaint.svg
crunchbase: https://www.crunchbase.com/organization/cinepaint
- item:
name: GIMP
homepage_url: https://www.gimp.org/
repo_url: https://github.com/GNOME/gimp
logo: gimp.svg
twitter: https://twitter.com/GIMP_Official
crunchbase: https://www.crunchbase.com/organization/gnu
- item:
name: Natron
homepage_url: https://natrongithub.github.io/
repo_url: https://github.com/NatronGitHub/Natron
logo: natron.svg
crunchbase: https://www.crunchbase.com/organization/natron
- item:
name: PhotoFlow
homepage_url: http://aferrero2707.github.io/PhotoFlow/
repo_url: https://github.com/aferrero2707/PhotoFlow
logo: photoflow.svg
organization:
name: Andrea Ferrero
- item:
name: tracksperanto
homepage_url: https://github.com/guerilla-di/tracksperanto
repo_url: https://github.com/guerilla-di/tracksperanto
logo: tracksperanto.svg
crunchbase: https://www.crunchbase.com/organization/guerilla-di
- category:
name: Assets and Workflow
subcategories:
- subcategory:
name: Scenes and Geometry
items:
- item:
name: Alembic
homepage_url: http://www.alembic.io
repo_url: https://github.com/alembic/alembic
logo: alembic.svg
crunchbase: https://www.crunchbase.com/organization/lucasfilm
- item:
name: AliceVision
homepage_url: https://alicevision.org/
repo_url: https://github.com/alicevision/AliceVision
logo: alicevision.svg
twitter: https://twitter.com/mikrosanimation
crunchbase: https://www.crunchbase.com/organization/mikros-image
- item:
name: Collada
homepage_url: https://www.khronos.org/collada/
repo_url: https://github.com/KhronosGroup/OpenCOLLADA
logo: collada.svg
crunchbase: https://www.crunchbase.com/organization/khronos-group-2
- item:
name: dnPtcViewerNode
homepage_url: https://github.com/dneg/dnPtcViewerNode
repo_url: https://github.com/dneg/dnPtcViewerNode
logo: dn-ptc-viewer-node.svg
crunchbase: https://www.crunchbase.com/organization/double-negative
- item:
name: GTO
homepage_url: https://github.com/jimhourihan/gto
repo_url: https://github.com/jimhourihan/gto
logo: gto.svg
crunchbase: https://www.crunchbase.com/organization/autodesk
- item:
name: Maya Reticle
homepage_url: https://github.com/imageworks/spReticle
repo_url: https://github.com/imageworks/spReticle
logo: spreticle.svg
crunchbase: https://www.crunchbase.com/organization/sony-pictures-imageworks
- item:
name: Meshroom
homepage_url: https://github.com/alicevision/meshroom
repo_url: https://github.com/alicevision/meshroom
logo: meshroom.svg
twitter: https://twitter.com/mikrosanimation
crunchbase: https://www.crunchbase.com/organization/mikros-image
- item:
name: Open Subdiv
homepage_url: https://graphics.pixar.com/opensubdiv/docs/intro.html
repo_url: https://github.com/PixarAnimationStudios/OpenSubdiv
logo: opensubdiv.svg
twitter: https://twitter.com/pixar
crunchbase: https://www.crunchbase.com/organization/pixar
- item:
name: OpenFlipper
homepage_url: https://www.graphics.rwth-aachen.de/software/openflipper/
repo_url: https://github.com/heartvalve/OpenFlipper
logo: openflipper.svg
crunchbase: https://www.crunchbase.com/organization/rwth-aachen-university
- item:
name: OpenMesh
homepage_url: https://www.graphics.rwth-aachen.de/software/openmesh/
repo_url: https://github.com/Lawrencemm/openmesh
logo: openmesh.svg
crunchbase: https://www.crunchbase.com/organization/rwth-aachen-university
- item:
name: PhysX
homepage_url: https://github.com/NVIDIA-Omniverse/PhysX
repo_url: https://github.com/NVIDIA-Omniverse/PhysX
logo: physx.svg
crunchbase: https://www.crunchbase.com/organization/nvidia
- item:
name: 'USD: Universal Scene Description'
homepage_url: https://openusd.org/
repo_url: https://github.com/PixarAnimationStudios/OpenUSD
logo: usd.svg
twitter: https://twitter.com/pixar
crunchbase: https://www.crunchbase.com/organization/pixar
- subcategory:
name: Timelines and Animation
items:
- item:
name: edl
homepage_url: https://github.com/guerilla-di/edl
repo_url: https://github.com/guerilla-di/edl
logo: edl.svg
crunchbase: https://www.crunchbase.com/organization/guerilla-di
- item:
name: flame-channel-parser
homepage_url: https://github.com/guerilla-di/flame_channel_parser
repo_url: https://github.com/guerilla-di/flame_channel_parser
logo: flame_channel_parser.svg
crunchbase: https://www.crunchbase.com/organization/guerilla-di
- item:
name: OpenAnnotationIO
homepage_url: https://openannotation.io/
repo_url: https://github.com/AheadIO/OpenAnnotationIO
logo: openannotationio.svg
twitter: https://twitter.com/ahead_io
organization:
name: Ahead.io
- item:
name: timecode
homepage_url: https://github.com/guerilla-di/timecode
repo_url: https://github.com/guerilla-di/timecode
logo: timecode.svg
crunchbase: https://www.crunchbase.com/organization/guerilla-di
- subcategory:
name: Pipelines and Frameworks
items:
- item:
name: AYON
homepage_url: https://ynput.io/ayon/
repo_url: https://github.com/ynput/ayon-core
project_org: https://github.com/ynput
logo: ayon.svg
twitter: https://twitter.com/openpype
crunchbase: https://www.crunchbase.com/organization/ynput
- item:
name: Blender
homepage_url: https://www.blender.org/
repo_url: https://github.com/blender/blender
logo: blender.svg
twitter: https://twitter.com/blender
crunchbase: https://www.crunchbase.com/organization/blender-org
- item:
name: Cortex
homepage_url: https://github.com/ImageEngine/cortex
repo_url: https://github.com/ImageEngine/cortex
logo: cortex.svg
crunchbase: https://www.crunchbase.com/organization/image-engine-design
- item:
name: Gaffer
homepage_url: https://www.gafferhq.org/
repo_url: https://github.com/GafferHQ/gaffer
logo: gaffer.svg
crunchbase: https://www.crunchbase.com/organization/image-engine-design
- item:
name: Kdenlive
homepage_url: https://kdenlive.org/en
repo_url: https://github.com/KDE/kdenlive
logo: kdenlive.svg
twitter: https://twitter.com/kdecommunity
crunchbase: https://www.crunchbase.com/organization/kde-e-v
- item:
name: Kitsu
homepage_url: https://kitsu.cg-wire.com/
repo_url: https://github.com/cgwire/kitsu
logo: kitsu.svg
twitter: https://twitter.com/cgwirekitsu
crunchbase: https://www.crunchbase.com/organization/cgwire
- item:
name: Olive Editor
homepage_url: https://olivevideoeditor.org/
repo_url: https://github.com/olive-editor/olive
project_org: https://github.com/olive-editor
logo: olive.svg
crunchbase: https://www.crunchbase.com/organization/olive-editor
- item:
name: OpenProductionDataIO
homepage_url: https://googlecloudplatform.github.io/opdio/
repo_url: https://github.com/googlecloudplatform/opdio
logo: OpenProductionDataIO.svg
crunchbase: https://www.crunchbase.com/organization/google-cloud-platform
- item:
name: Prism Pipeline
homepage_url: https://prism-pipeline.com/
repo_url: https://github.com/PrismPipeline/Prism
logo: prism-pipeline.svg
organization:
name: Prism Software GmbH
- item:
name: TACTIC
homepage_url: https://southpawtech.com/tactic-open-source/
repo_url: https://github.com/Southpaw-TACTIC/TACTIC
logo: tactic.svg
crunchbase: https://www.crunchbase.com/organization/southpaw-technology-inc
- item:
name: USD Notice Framework
homepage_url: https://disneyanimation.com/open-source/usd-notice-framework/
repo_url: https://github.com/wdas/unf
logo: usd-notice-framework.svg
crunchbase: https://www.crunchbase.com/organization/walt-disney-animation-studios
- subcategory:
name: Software Foundation and System Administration
items:
- item:
name: AFX Threads
homepage_url: https://github.com/AuthorityFX/afxthreads
repo_url: https://github.com/AuthorityFX/afxthreads
logo: AFX-Threads.svg
crunchbase: https://www.crunchbase.com/organization/authorityfx
- item:
name: ForestFlow
homepage_url: https://github.com/ForestFlow/ForestFlow
repo_url: https://github.com/ForestFlow/ForestFlow
logo: forestflow.svg
twitter: https://twitter.com/dwanimation
crunchbase: https://www.crunchbase.com/organization/dreamworks-studios
- item:
name: Munki
homepage_url: https://www.munki.org/munki/
repo_url: https://github.com/munki/munki
logo: munki.svg
crunchbase: https://www.crunchbase.com/organization/walt-disney-animation-studios
- item:
name: PyMEL
homepage_url: https://github.com/LumaPictures/pymel
repo_url: https://github.com/LumaPictures/pymel
logo: py-mel.svg
crunchbase: https://www.crunchbase.com/organization/luma-pictures
- item:
name: pyString
homepage_url: https://github.com/imageworks/pystring
repo_url: https://github.com/imageworks/pystring
logo: pystring.svg
crunchbase: https://www.crunchbase.com/organization/sony-pictures-imageworks
- item:
name: QtPyConvert
homepage_url: https://github.com/digitaldomain/QtPyConvert
repo_url: https://github.com/digitaldomain/QtPyConvert
logo: qtpyconvert.svg
crunchbase: https://www.crunchbase.com/organization/digital-domain
- item:
name: Scala Migrations
homepage_url: https://github.com/blair/scala-migrations
repo_url: https://github.com/imageworks/scala-migrations
logo: scalamigrations.svg
crunchbase: https://www.crunchbase.com/organization/sony-pictures-imageworks
- category:
name: Rendering and Queueing
subcategories:
- subcategory:
name: Rendering, Lighting, and Lookdev
items:
- item:
name: Appleseed
homepage_url: https://appleseedhq.net/
repo_url: https://github.com/appleseedhq/appleseed
project_org: https://github.com/appleseedhq
logo: appleseed.svg
twitter: https://twitter.com/appleseedhq
organization:
name: The appleseedhq Organization
- item:
name: Aurora
homepage_url: https://github.com/Autodesk/Aurora
repo_url: https://github.com/Autodesk/Aurora
logo: Aurora.svg
crunchbase: https://www.crunchbase.com/organization/autodesk
- item:
name: Cryptomatte
homepage_url: https://github.com/Psyop/Cryptomatte
repo_url: https://github.com/Psyop/Cryptomatte
logo: cryptomatte.svg
crunchbase: https://www.crunchbase.com/organization/psyop
- item:
name: Embree
homepage_url: https://www.embree.org
repo_url: https://github.com/embree/embree
logo: embree.svg
twitter: https://twitter.com/IntelSoftware
crunchbase: https://www.crunchbase.com/organization/intel
- item:
name: MoonRay
description: >-
MoonRay is DreamWorks’ open-source, award-winning, state-of-the-art production MCRT renderer, which has been used on feature films such as How to
Train Your Dragon: The Hidden World, Trolls World Tour, The Bad Guys, the upcoming Puss In Boots: The Last Wish, as well as future titles. MoonRay
was developed at DreamWorks and is in continuous active development and includes an extensive library of production-tested, physically based
materials, a USD Hydra render delegate, multi-machine and cloud rendering via the Arras distributed computation framework.
homepage_url: https://openmoonray.org/
repo_url: https://github.com/dreamworksanimation/openmoonray
logo: moonray.svg
crunchbase: https://www.crunchbase.com/organization/dreamworks-9660
- item:
name: NVIDIA MDL SDK
homepage_url: https://github.com/NVIDIA/MDL-SDK
repo_url: https://github.com/NVIDIA/MDL-SDK
logo: mdl.svg
crunchbase: https://www.crunchbase.com/organization/nvidia
- item:
name: Open Image Denoise
homepage_url: https://www.openimagedenoise.org/
repo_url: https://github.com/OpenImageDenoise/oidn
project_org: https://github.com/OpenImageDenoise
logo: OpenImageDenoise.svg
crunchbase: https://www.crunchbase.com/organization/intel
- item:
name: Pixie
homepage_url: http://www.renderpixie.com/
repo_url: https://github.com/blkdev2/pixie
logo: render-pixie.svg
crunchbase: https://www.crunchbase.com/organization/renderpixie
- item:
name: QuiltiX
homepage_url: https://pypi.org/project/QuiltiX/
repo_url: https://github.com/PrismPipeline/QuiltiX
logo: QuiltiX.svg
organization:
name: Prism Software GmbH
- item:
name: Slang
homepage_url: https://shader-slang.com/
repo_url: https://github.com/shader-slang/slang
project_org: https://github.com/shader-slang
logo: slang.svg
crunchbase: https://www.crunchbase.com/organization/khronos-group-2
- item:
name: StratusGFX
homepage_url: https://ktstephano.github.io/portfolio
repo_url: https://github.com/KTStephano/StratusGFX
logo: stratusgfx.svg
organization:
name: KTStephano
- subcategory:
name: Queueing and Render Management
items:
- item:
name: CGRU
homepage_url: https://cgru.info/
repo_url: https://github.com/CGRU/cgru
logo: cgru.svg
crunchbase: https://www.crunchbase.com/organization/cgru
- item:
name: Open Job Description
homepage_url: https://github.com/OpenJobDescription/openjd-specifications/wiki
repo_url: https://github.com/OpenJobDescription/openjd-specifications
project_org: https://github.com/OpenJobDescription
logo: OpenJobDescription.svg
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
- category:
name: Math and Simulation
subcategories:
- subcategory:
name: File Formats and Interchange
items:
- item:
name: Field3D
homepage_url: https://github.com/imageworks/Field3D
repo_url: https://github.com/imageworks/Field3D
logo: field3d.svg
crunchbase: https://www.crunchbase.com/organization/sony-pictures-imageworks
- item:
name: OpenVPCal
description: OpenVPCal is an open-source calibration tool for In-Camera Visual Effects pipelines.
homepage_url: https://github.com/Netflix/OpenVPCal
repo_url: https://github.com/Netflix/OpenVPCal
logo: openvpcal.svg
crunchbase: https://www.crunchbase.com/organization/netflix
- item:
name: Partio
homepage_url: https://partio.us/
repo_url: https://github.com/wdas/partio
logo: partio.svg
crunchbase: https://www.crunchbase.com/organization/walt-disney-animation-studios
- item:
name: rmanPtc SOP
homepage_url: http://danbethell.github.io/rmanptcsop/
repo_url: https://github.com/danbethell/rmanptcsop
logo: rmanPtc-SOP.svg
crunchbase: https://www.crunchbase.com/organization/double-negative
- subcategory:
name: Simulation
items:
- item:
name: Bullet Physics
homepage_url: https://pybullet.org/wordpress
repo_url: https://github.com/bulletphysics/bullet3
logo: bullet.svg
crunchbase: https://www.crunchbase.com/organization/bullet-physics
- item:
name: Connected Spaces Platform
homepage_url: https://www.magnopus.com/csp
repo_url: https://github.com/magnopus-opensource/connected-spaces-platform
logo: connectedspaces.svg
crunchbase: https://www.crunchbase.com/organization/magnopus
- subcategory:
name: Math Foundations
items:
- item:
name: ANN
homepage_url: http://www.cs.umd.edu/~mount/ANN/
repo_url: https://github.com/dials/annlib
logo: ann.svg
crunchbase: https://www.crunchbase.com/organization/university-of-maryland
- item:
name: CGAL (Computational Geometry Algorithms Library)
homepage_url: https://www.cgal.org/
repo_url: https://github.com/CGAL/cgal
logo: cgal.svg
crunchbase: https://www.crunchbase.com/organization/computational-geometry-algorithms-library
- item:
name: pimath
homepage_url: https://github.com/madpianist/pimath
repo_url: https://github.com/madpianist/pimath
logo: pimath.svg
crunchbase: https://www.crunchbase.com/organization/dr-studios
- item:
name: SeExpr
homepage_url: https://wdas.github.io/SeExpr/
repo_url: https://github.com/wdas/seexpr
logo: seexpr.svg
crunchbase: https://www.crunchbase.com/organization/walt-disney-animation-studios
- category:
name: ASWF Member Company
subcategories:
- subcategory:
name: Premier
items:
- item:
name: Academy of Motion Picture Arts and Sciences
homepage_url: https://oscars.org/
logo: academy_of_motion_picture_arts_and_sciences.svg
description: Founded in 1927, The Academy of Motion Picture Arts and Sciences is a nonprofit organization that specializes in advancing the arts and sciences of motion pictures. Membership
of the organization is by invitation only and the Academy already has over 6,000 motion picture professionals in their roster. While The Academy hosts a number of annual
award shows, including The Governors Awards, their most well-known award show is The Academy Awards, officially known as The Oscars. The organization is headquartered in
Beverly Hills, California.
crunchbase: https://www.crunchbase.com/organization/the-academy-of-motion-picture-arts-and-sciences
twitter: https://twitter.com/TheAcademy
extra:
linkedin_url: https://www.linkedin.com/company/academy-of-motion-picture-arts-and-sciences
- item:
name: Adobe Inc.
homepage_url: https://adobe.com/
logo: adobe_inc.svg
description: Founded in 1982, Adobe is an American multinational computer software company that engages in the provision of digital marketing and digital media solutions.
Adobe is headquartered in San Jose, California.
crunchbase: https://www.crunchbase.com/organization/adobe-systems
twitter: https://twitter.com/Adobe
extra:
linkedin_url: https://www.linkedin.com/company/adobe
- item:
name: Amazon Web Services, Inc.
homepage_url: https://amazon.com/
logo: amazon_web_services_inc.svg
description: Amazon.com, Inc. is an online retailer, offering new, refurbished and used products including books, DVDs, CDs, MP3 downloads, software, video games, electronics,
furniture, apparel, jewelry, and toys. The company also manufactures consumer electronics (notably the Amazon Kindle and the Kindle Fire) and provides cloud computing services.
Amazon is a publicly owned company and is based out of Seattle, WA.
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
twitter: https://twitter.com/amazon
extra:
linkedin_url: https://www.linkedin.com/company/amazon
- item:
name: Autodesk
homepage_url: https://autodesk.com/
logo: autodesk.svg
description: Founded in 1982, Autodesk is an American multinational corporation that focuses on 2D and 3D design software for use in architecture, engineering and building
construction, manufacturing, and media and entertainment. Autodesk helps people imagine, design and create a better world. Design professionals, engineers, digital artists,
and architects use Autodesk software. Autodesk has its global headquarters located in San Rafael, California.
crunchbase: https://www.crunchbase.com/organization/autodesk
twitter: https://twitter.com/autodesk
extra:
linkedin_url: https://www.linkedin.com/company/autodesk
- item:
name: DNEG
homepage_url: https://dneg.com/
logo: dneg.svg
description: We are DNEG, one of the world's leading visual effects, animation and stereo conversion companies for feature film and television, with studios in London, Vancouver,
Mumbai, Los Angeles, Chennai, Montréal, Chandigarh, Hyderabad and Goa.
crunchbase: https://www.crunchbase.com/organization/double-negative
twitter: https://twitter.com/dneg
extra:
linkedin_url: https://www.linkedin.com/company/dnegvfx
- item:
name: DreamWorks Animation
homepage_url: https://dreamworks.com/
logo: dreamworks_animation.svg
description: |-
DreamWorks Animation SKG is devoted to producing high-quality family entertainment through the use of computer-generated (CG) animation.
NOTE: Subsidiary of Comcast for LF membership
crunchbase: https://www.crunchbase.com/organization/dreamworks-9660
twitter: https://twitter.com/Dreamworks
extra:
linkedin_url: https://www.linkedin.com/company/dreamworks-animation
- item:
name: Epic Games, Inc
homepage_url: https://epicgames.com/
logo: epic_games_inc.svg
description: Epic Games has spent the past couple of decades building our own games and providing our game engine technology to other developers. We’ve created the “Unreal”
series of games, the “Gears of War” franchise and the “Infinity Blade” line of mobile games. We’re currently hard at work on our next games, Fortnite and Paragon. Sign
up for the betas at Fortnite.com and Paragon.com. Our Unreal Engine technology is available for free for everyone at www.unrealengine.com. To learn more about our company,
visit www.epicgames.com.
crunchbase: https://www.crunchbase.com/organization/epic-games-2
twitter: https://twitter.com/EpicGames
extra:
linkedin_url: https://www.linkedin.com/company/epic-games
- item:
name: Google LLC
homepage_url: https://google.com/
logo: google_llc.svg
description: Founded in 1998, Google, Inc. is a multinational corporation that provides Internet-related services and products, including an internet search engine, software,
cloud computing, and advertising technologies.
crunchbase: https://www.crunchbase.com/organization/google
twitter: https://twitter.com/Google
extra:
linkedin_url: https://www.linkedin.com/company/google
- item:
name: Intel Corporation
homepage_url: https://intel.com/
logo: intel_corporation.svg
description: Intel Corporation designs, manufactures, and sells computer, networking, and communications platforms worldwide. The company offers microprocessors, chipsets,
and input, display, and storage devices, such as keyboard, mouse, monitor, hard drive or solid-state drive, and optical disc drives; and system-on-chip and multichip packaging
products. In addition, the company develops computer vision and machine learning-based sensing products, mapping and driving policy technology solutions for advanced driver
assistance systems, and autonomous driving technologies. It serves original equipment manufacturers, original design manufacturers, cloud and communications service providers,
and industrial, communications, and automotive equipment manufacturers. The company was founded in 1968 and is based in Santa Clara, California.
crunchbase: https://www.crunchbase.com/organization/intel
twitter: https://twitter.com/intel
extra:
linkedin_url: https://www.linkedin.com/company/intel-corporation
- item:
name: Microsoft Corporation
homepage_url: https://microsoft.com/
logo: microsoft_corporation.svg
description: The Microsoft Corporation is a publicly owned American software corporation headquartered in Redmond, Washington. Founded in 1975, the company develops, manufactures,
licenses and supports a variety of computing products used by consumers and businesses. Some of their popular products include Windows, Xbox, Microsoft HoloLens, Microsoft
Lumia, Outlook, Skype, OneDrive and Microsoft Band.
crunchbase: https://www.crunchbase.com/organization/microsoft
twitter: https://twitter.com/Microsoft
extra:
linkedin_url: https://www.linkedin.com/company/microsoft
- item:
name: Netflix, Inc.
homepage_url: https://netflix.com/
logo: netflix_inc.svg
description: Netflix, founded in 1997 and headquartered in Los Gatos, California, is an Internet subscription service for watching television shows and movies. Subscribers
can instantly watch unlimited television shows and movies streamed over the Internet to their televisions, computers, and mobile devices.
crunchbase: https://www.crunchbase.com/organization/netflix
twitter: https://twitter.com/netflix
extra:
linkedin_url: https://www.linkedin.com/company/netflix
- item:
name: NVIDIA Corporation
homepage_url: https://nvidia.com/
logo: nvidia_corporation.svg
description: Founded in 1993, NVIDIA is an AI computing company. The company is headquartered in Santa Clara, California.
crunchbase: https://www.crunchbase.com/organization/nvidia
twitter: https://twitter.com/nvidia
extra:
linkedin_url: https://www.linkedin.com/company/nvidia
- item:
name: Samsung Electronics Co. Ltd.
homepage_url: https://samsung.com/
logo: samsung_electronics_co_ltd.svg
description: Founded in 1938, Samsung Electronics is a South Korean multinational electronics company engaged in consumer electronics, information technology, mobile communications,
and device solutions businesses worldwide. The company develops, manufactures, and sells various consumer products, including mobile phones, tablets, televisions, Blu-ray
players, and more. The company is headquartered in Suwon-si, South Korea.
crunchbase: https://www.crunchbase.com/organization/samsung-electronics
twitter: https://twitter.com/Samsung
extra:
linkedin_url: https://www.linkedin.com/company/samsung-electronics
- item:
name: Sony Pictures Entertainment
homepage_url: https://sonypictures.com/
logo: sony_pictures_entertainment.svg
description: Sony Pictures Entertainment (SPE) is a subsidiary of Sony Corporation of America (SCA), a subsidiary of Tokyo-based Sony Corporation. SPE's global operations
encompass motion picture production and distribution; television production and distribution; digital content creation and distribution; worldwide channel investments;
home entertainment acquisition and distribution, operation of studio facilities; development of new entertainment products, services and technologies; and distribution
of filmed entertainment in 67 countries.
crunchbase: https://www.crunchbase.com/organization/sony-pictures-entertainment
twitter: https://twitter.com/SonyPictures
extra:
linkedin_url: https://www.linkedin.com/company/sony-pictures-entertainment
- item:
name: The Walt Disney Studios
homepage_url: https://disney.com/
logo: the_walt_disney_studios.svg
description: (Disney) - Disney Parks Talent Casting is the Entertainment Casting group within Walt Disney Parks & Resorts. Many are surprised to learn that Disney is one
of the largest live entertainment companies in the world. We produce thousands of special events around the world and entertain millions of Guests every year in our Theme
Parks & Resorts. With such a huge scope of entertainment, there are countless ways to share your talent with our Disney Guests. From professional musical theater actors
looking for their next adventure, to aspiring performers looking for a place to hone their talent and learn the business. We have a spot for just about everyone.
crunchbase: https://www.crunchbase.com/organization/walt-disney-internet-group
twitter: https://twitter.com/Disney
extra:
linkedin_url: https://www.linkedin.com/company/disney-consumer-products-india
- item:
name: Wētā FX Limited
homepage_url: https://wetafx.co.nz/
logo: weta_fx_limited.svg
description: Weta Digital is a digital visual effects company based in Wellington, New Zealand.
crunchbase: https://www.crunchbase.com/organization/weta-digital
twitter: https://twitter.com/weta_digital
extra:
linkedin_url: https://www.linkedin.com/company/weta-fx
- subcategory:
name: General
items:
- item:
name: Animal Logic Pty Ltd
homepage_url: https://animallogic.com/
logo: animal_logic_pty_ltd.svg
description: Animal Logic is an Australian animation and visual effects digital studio based at Fox Studios in Sydney, Yaletown, Vancouver in Canada, and Rideback Ranch in
Los Angeles, California.
crunchbase: https://www.crunchbase.com/organization/animal-logic
twitter: https://twitter.com/animallogic
extra:
linkedin_url: https://www.linkedin.com/company/animal-logic
- item:
name: Bolt Graphics
homepage_url: https://bolt.graphics/
logo: bolt_graphics.svg
description: |-
A well-funded startup developing a flexible, scalable ray tracing engine
with best in-class performance for VR and mobile handsets, cloud and mobile
gaming, and cinema rendering.
crunchbase: https://www.crunchbase.com/organization/bolt-graphics
extra:
linkedin_url: https://www.linkedin.com/company/boltgraphics
- item:
name: Caligra
homepage_url: https://caligra.com/
logo: caligra.svg
organization:
name: Caligra
- item:
name: Canonical Group Limited
homepage_url: https://canonical.com/
logo: canonical_group_limited.svg
description: Canonical Ltd. is a UK-based privately held computer software company founded and funded by South African entrepreneur Mark Shuttleworth to market commercial
support and related services for Ubuntu and related projects.
crunchbase: https://www.crunchbase.com/organization/canonical-ltd
twitter: https://twitter.com/Canonical
extra:
linkedin_url: https://www.linkedin.com/company/canonical-ltd-
- item:
name: CoreWeave, Inc.
homepage_url: https://coreweave.com/
logo: coreweave_inc.svg
description: CoreWeave - Accelerating the way the world creates. NVIDIA GTC Registration 👇 https://t.co/twAghCKTyP
twitter: https://twitter.com/CoreWeave
organization:
name: CoreWeave, Inc.
linkedin: https://www.linkedin.com/company/coreweave
extra:
linkedin_url: https://www.linkedin.com/company/coreweave
- item:
name: Framestore
homepage_url: https://framestore.com/
logo: framestore.svg
description: Framestore brings extraordinary ideas to life in any space or screen through craft, imagination and technology. Offices in London, New York, Los Angeles, Montréal,
and Chicago.
crunchbase: https://www.crunchbase.com/organization/framestore
twitter: https://twitter.com/Framestore
extra:
linkedin_url: https://www.linkedin.com/company/framestore
- item:
name: ftrack AB
homepage_url: https://ftrack.com/
logo: ftrack_ab.svg
description: ftrack is the project management and media review platform that teams in the creative industries use to collaborate on creative projects.
crunchbase: https://www.crunchbase.com/organization/ftrack
twitter: https://twitter.com/ftrackhq
extra:
linkedin_url: https://www.linkedin.com/company/ftrack
- item:
name: HP Inc.
homepage_url: https://hp.com/
logo: hp_inc.svg
description: |-
HP Inc. (also known as HP and stylized as hp) is an American multinational information technology company headquartered in Palo Alto, California, United States. It develops personal computers (PCs), printers and related supplies, as well as 3D printing solutions.
It was formed on November 1, 2015, renamed from the personal computer and printer divisions of the original Hewlett-Packard Company, with its enterprise products and services businesses becoming Hewlett Packard Enterprise. The split was structured so that Hewlett-Packard changed its name to HP Inc. and spun off Hewlett Packard Enterprise as a new publicly traded company. HP Inc. retains Hewlett-Packard's pre-2015 stock price history and its former stock ticker symbol, HPQ, while Hewlett Packard Enterprise trades under its own symbol, HPE.[2][3]
HP is listed on the New York Stock Exchange and is a constituent of the S&P 500 Index.
crunchbase: https://www.crunchbase.com/organization/hewlett-packard
twitter: https://twitter.com/HP
extra:
linkedin_url: https://www.linkedin.com/company/hewlett-packard
- item:
name: Maxon Computer GmbH
homepage_url: https://maxon.net/
logo: maxon_computer_gmbh.svg
description: Maxon makes powerful, yet approachable software solutions for content creators working in 2D and 3D design, motion graphics, visual effects and visualization.
Maxon's innovative product portfolio helps artists supercharge their creative workflows. Its product lines include the award-winning Cinema 4D suite of 3D modeling, simulation
and animation technology, the diverse Red Giant lineup of revolutionary editing, motion design and filmmaking tools, the high-end production, blazingly fast Redshift rendering
solutions and the intuitive forger mobile sculpting app. Maxon's team is comprised of fun, passionate people who believe in building and empowering a successful artistic
community. From its popular, inclusive events to its free Cineversity educational resources, Maxon recognizes that developing strong connections with creatives and fostering
their professional growth is integral to Maxon's ability to stay on top of industry trends and better serve customers. Maxon is part of the Nemetschek Group.
crunchbase: https://www.crunchbase.com/organization/maxon-computer
twitter: https://twitter.com/MaxonVFX
extra:
linkedin_url: https://www.linkedin.com/company/maxonvfx
- item:
name: OTOY, Inc.
homepage_url: https://otoy.com/
logo: otoy_inc.svg
description: High performance cloud streaming and rendering technologies are just the beginning of what OTOY offers the artist and entertainment industries.
crunchbase: https://www.crunchbase.com/organization/otoy
twitter: https://twitter.com/OTOY
extra:
linkedin_url: https://www.linkedin.com/company/otoy
- item:
name: Red Hat, Inc.
homepage_url: https://redhat.com/
logo: red_hat_inc.svg
description: Red Hat was established in 1993 and is headquartered in Raleigh, North Carolina. Red Hat is the provider of open source software solutions, using a community-powered
approach to provide reliable and high-performing cloud, Linux, middleware, storage, and virtualization technologies. Red Hat also offers support, training, and consulting
services. As the connective hub in a global network of enterprises, partners, and open source communities, Red Hat helps create relevant, innovative technologies that liberate
resources for growth and prepare customers for the future of IT.
crunchbase: https://www.crunchbase.com/organization/red-hat
twitter: https://twitter.com/RedHat
extra:
linkedin_url: https://www.linkedin.com/company/red-hat
- item:
name: SideFX
homepage_url: https://sidefx.com/
logo: sidefx.svg
description: Houdini is a 3D procedural software for modeling, rigging, animation, VFX, look development, lighting and rendering in film, TV, advertising and video game pipelines.
crunchbase: https://www.crunchbase.com/organization/sidefx
twitter: https://twitter.com/sidefx
extra:
linkedin_url: https://www.linkedin.com/company/side-effects-software
- item:
name: The Foundry Visionmongers Limited
homepage_url: https://foundry.com/
logo: the_foundry_visionmongers_limited.svg
description: The Foundry Visionmongers was founded in 1996. The company offers VFX software, NUKE, compositing, MARI, texture painting, etc. It is headquartered in United
Kingdom.
crunchbase: https://www.crunchbase.com/organization/foundry
twitter: https://twitter.com/TheFoundryTeam
extra:
linkedin_url: https://www.linkedin.com/company/foundryteam
- item:
name: Warner Bros. Entertainment Inc.
homepage_url: https://warnerbros.com/
logo: warner_bros_entertainment_inc.svg
description: |-
About us
WARNER BROS. ENTERTAINMENT is a global leader in all forms of entertainment and their related businesses across all current and emerging media and platforms. A WarnerMedia Company, the fully integrated, broad-based Studio is home to one of the most successful collections of brands in the world and stands at the forefront of every aspect of the entertainment industry from feature film, television and home entertainment production and worldwide distribution to DVD and Blu-ray, digital distribution, animation, comic books, video games, product and brand licensing, and broadcasting. The company’s vast library, one of the most prestigious and valuable in the world, consists of more than 61,000 hours of programming, including nearly 6,500 feature films and 3,000 television programs comprised of tens of thousands of individual episodes.
Warner Bros. Entertainment has employees in over 30 countries. The company is headquartered at the Warner Bros. Studios lot, 142 acres in Burbank, California, which is considered one of the foremost motion picture and television production and post-production facilities in the world and is also home to 35 soundstages (including one of the world’s tallest stages, which has an in-ground tank capable of holding more than two million gallons of water). Warner Bros. Studio Facilities also manages the company’s studio in the U.K., Warner Bros. Studios Leavesden, which is a 160-acre production facility that has been the production site of many highly acclaimed Warner Bros. movies including the eight Harry Potter films.
Recent updateSee all See all recent updates
Image accompanying recent update
AQUAMAN – Extended Video – Only in Theaters December 21
youtube.com
497 Likes 13 Comments
Company details
Website
http://www.warnerbros.com/
Headquarters
Burbank, CA
Year founded
1923
Company type
Public Company
Company size
10,001+ employees
Specialties
Digital Media, Television, Motion Pictures, Interactive Entertainment (Games), DC Comics, Studio Operations, Consumer Products, Technology, and Video Games
7 Office locations
Warner Bros. Studios Main
4000 Warner Boulevard, Burbank, CA 91522, us
Get directions Get directions to 4000 Warner Boulevard, Burbank, CA 91522, us
Warner Bros. UK
Warner House, 98 Theobald's Road, London, WC1X 8WB, gb
Get directions Get directions to Warner House, 98 Theobald's Road, London, WC1X 8WB, gb