-
Notifications
You must be signed in to change notification settings - Fork 170
/
contents.json
4512 lines (4512 loc) · 228 KB
/
contents.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"title": "Awesome Video ",
"header": "# Awesome Video [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)\n \n<!-- \n\nPLEASE DO NOT UPDATE THIS FILE, UPDATE CONTENTS.JSON INSTEAD. THANK YOU :-)\n\n -->\n\n",
"header_contributing": "Please take a quick look at the [contribution guidelines](https://github.com/krzemienski/awesome-video/blob/master/.github/CONTRIBUTING.md) first. If you see a package or project here that is no longer maintained or is not a good fit, please submit a pull request to improve this file. Thank you to all [contributors](https://github.com/krzemienski/awesome-video/graphs/contributors); you rock!!",
"categories": [
{
"title": "Introduction",
"id": "introduction",
"description": "What's video?"
},
{
"title": "Learning",
"id": "learning",
"description": "An awesome list of learning video streaming resources."
},
{
"title": "HLS",
"id": "hls",
"description": "HLS tools, libraries, and resources."
},
{
"title": "DASH",
"id": "dash",
"description": "DASH tools, libraries, and resources."
},
{
"title": "Kubernetes",
"id": "kubernetes",
"description": "Reading & resources, relative to the world of kubernetes leveraged for video devs."
},
{
"title": "Encoding",
"id": "encoding",
"description": "Encoding tools, libraries, and resources."
},
{
"title": "Transport",
"id": "transport",
"description": "Transport protocols, libraries, and resources."
},
{
"title": "RIST",
"id": "rist",
"description": "Reliable Internet Stream Transport protocol",
"parent": "transport"
},
{
"title": "SRT",
"id": "srt",
"description": "Secure Reliable Transport protocol",
"parent": "transport"
},
{
"title": "RTMP",
"id": "rtmp",
"description": "Real-Time Messaging Protocol",
"parent": "transport"
},
{
"title": "Streaming Server and Storage",
"id": "streaming-server-and-storage",
"description": "Packagers, origins (s3, gcs), and data movement for linear and finite playback. "
},
{
"title": "Reading",
"id": "reading",
"description": "A list of reading articles, blogs, and newsletters for video streaming.",
"parent": "learning"
},
{
"title": "Specs and Standards",
"id": "specs-and-standards",
"description": "Latest offical specs and standards related to video streaming."
},
{
"title": "Industry Forums",
"id": "industry-forums",
"parent": "specs-and-standards",
"description": "Industry forums relative to video streaming."
},
{
"title": "MPEG",
"id": "mpeg",
"parent": "specs-and-standards",
"description": "MPEG meetings, standards, and resources. "
},
{
"title": "Players",
"id": "players",
"description": "Client players, libraries, tools, and examples."
},
{
"title": "FFMPEG",
"id": "ffmpeg",
"description": "FFMPEG libraries, configs, tools, and examples."
},
{
"title": "Audio",
"id": "audio",
"description": "Audio libraries, tools, and examples."
},
{
"title": "Subtitles and Captions",
"id": "subtitles-and-captions",
"description": "Subtitling & Closed Caption libraries, tools, and examples."
},
{
"title": "HEVC",
"id": "hevc",
"parent": "encoding",
"description": "HEVC (h265) libraries, tools, examples, and resources."
},
{
"title": "VP9",
"id": "vp9",
"parent": "encoding",
"description": "VP9 libraries, tools, examples, and resources."
},
{
"title": "AV1",
"id": "av1",
"parent": "encoding",
"description": "AV1 libraries, tools, examples, and resources."
},
{
"title": "Ads",
"id": "ads",
"description": "Ads in streaming video related libraries, tools, examples, and resources."
},
{
"title": "Roku",
"id": "roku",
"parent": "players",
"description": "Roku app tools, libraries,and examples."
},
{
"title": "iOS tvOS",
"id": "ios-tvos",
"parent": "players",
"description": "AVPlayer, playback tools, sdks, and examples."
},
{
"title": "Web",
"id": "web",
"parent": "players",
"description": "Web browser player, tools, sdks, and examples."
},
{
"title": "Smart TVs",
"id": "smart-tv",
"parent": "players"
},
{
"title": "Android",
"id": "android",
"parent": "players",
"description": "Android and fireTV tools, sdks, and examples."
},
{
"title": "Chromecast",
"id": "chromecast",
"parent": "players",
"description": "Chromecast app tools, libraries,and examples."
},
{
"title": "Vendors",
"id": "vendors",
"description": "Video indurstry's various vendors products and documentations."
},
{
"title": "Dolby",
"id": "dolby",
"parent": "vendors",
"description": "Dolby specs, libraries, examples, and tools."
},
{
"title": "Industry Forums",
"id": "industry-forums",
"parent": "specs-standards",
"description": "Industry forums relative to video streaming."
},
{
"title": "QoE",
"id": "qoe",
"description": "QoE & Analytics tools, libraries, and resources."
},
{
"title": "Tools",
"id": "tools",
"description": "Streaming video tools and resources to make life easier."
},
{
"title": "DRM",
"id": "drm",
"description": "DRM tools, documentations, and resources."
},
{
"title": "Testing",
"id": "testing",
"description": "Video streaming testing tools and helpers."
},
{
"title": "Community",
"id": "community",
"description": "Video developers community, slack groups, conferences, meetups"
},
{
"title": "Conferences",
"id": "conferences",
"parent": "community"
},
{
"title": "Slack Groups",
"id": "slack",
"parent": "community"
},
{
"title": "Meet ups",
"id": "meetups",
"parent": "community"
},
{
"title": "Talks Presentations Podcasts",
"id": "talks-presentations-podcasts",
"parent": "learning",
"description": "Conference talks and pdf presentations and podcasts on streaming video ."
},
{
"title": "Books",
"id": "books",
"parent": "learning",
"description": "Books on video streaming. NOTE: Books published more than 4-5 years ago may not be up to date on latest streaming tech."
},
{
"title": "CDN",
"id": "cdn",
"description": "Last mile tools, documentations, and resources."
},
{
"title": "HDR10, HLG, Dolby Vision",
"id": "hdr",
"description": "HDR tools, learning, documentations, and resources."
}
],
"projects": [
{
"category": "ffmpeg",
"homepage": "https://github.com/transitive-bullshit/awesome-ffmpeg",
"description": "\ud83d\udc7b A curated list of awesome FFmpeg resources.",
"title": "transitive-bullshit/awesome-ffmpeg"
},
{
"category": "testing",
"homepage": "https://4kmedia.org/",
"description": "Uncompressed 4K demos, samples, and trailers, to show off your new ultra-HD (2160p) HDR/HLG/Dolby Vision television or monitor.",
"title": "4K Media | Free Ultra-HD / HDR / HLG / Dolby Vision 4K Video Demos"
},
{
"category": "hls",
"homepage": "https://github.com/alfg/docker-nginx-rtmp",
"description": "\ud83d\udc0b A Dockerfile for nginx-rtmp-module + FFmpeg from source with basic settings for streaming HLS. Built on Alpine Linux. - alfg/docker-nginx-rtmp",
"title": "alfg/docker-nginx-rtmp"
},
{
"category": "tools",
"description": "NGINX-based Live Media Streaming Server.",
"homepage": "https://github.com/gnolizuh/BLSS",
"title": "gnolizuh/BLSS"
},
{
"category": "players",
"description": "HLS player for iOS that supports manual selection for the quality of adaptive streams - IvanoBilenchi/Adaptive-Video-Player",
"homepage": "https://github.com/IvanoBilenchi/Adaptive-Video-Player",
"title": "IvanoBilenchi/Adaptive-Video-Player"
},
{
"category": "hls",
"description": "A light weight M3U8 parser. Support X-Key & X-Session-Key. - M3U8Kit/M3U8Parser",
"homepage": "https://github.com/M3U8Kit/M3U8Parser",
"title": "M3U8Kit/M3U8Parser"
},
{
"category": "hls",
"description": "Google Chrome Extension for sniffing and downloading HTTP Live streams (HLS) - puemos/hls-downloader-chrome-extension",
"homepage": "https://github.com/puemos/hls-downloader-chrome-extension",
"title": "puemos/hls-downloader-chrome-extension"
},
{
"category": "hls",
"description": "HLS media segmenter.",
"homepage": "https://github.com/iliya-gr/mediasegmenter",
"title": "iliya-gr/mediasegmenter"
},
{
"category": "hls",
"description": "A lovely video downloader for HLS videos.",
"homepage": "https://github.com/Last-Order/Minyami",
"title": "Last-Order/Minyami"
},
{
"category": "hls",
"description": "Download all video files from HLS (HTTP Live Streaming) VoD (Video on Demand) m3u8 playlist for local playback - denex/hls-downloader",
"homepage": "https://github.com/denex/hls-downloader",
"title": "denex/hls-downloader"
},
{
"category": "tools",
"description": "Unison file synchronizer.",
"homepage": "https://github.com/bcpierce00/unison",
"title": "bcpierce00/unison"
},
{
"category": "hls",
"description": "An asynchronous terminal-based hls video stream (m3u8) downloader & combiner, with AES-128 decryption support. - SoulMelody/hls-get",
"homepage": "https://github.com/SoulMelody/hls-get",
"title": "SoulMelody/hls-get"
},
{
"category": "ios-tvos",
"description": "ModernAVPlayer is a persistence AVPlayer wrapper. ",
"homepage": "https://github.com/noreasonprojects/ModernAVPlayer",
"title": "noreasonprojects/ModernAVPlayer"
},
{
"category": "tools",
"description": "Node.js DASH and HLS downloader. ",
"homepage": "https://github.com/schedules/dl",
"title": "schedules/dl"
},
{
"category": "streaming-server-and-storage",
"description": "High performance file syncing and sharing, with also Markdown WYSIWYG editing, Wiki, file label and other knowledge management features. - haiwen/seafile",
"homepage": "https://github.com/haiwen/seafile",
"title": "haiwen/seafile"
},
{
"category": "tools",
"description": "JavaScript version of GPAC's MP4Box tool.",
"homepage": "https://github.com/gpac/mp4box.js",
"title": "gpac/mp4box.js"
},
{
"category": "ffmpeg",
"description": "Manifesto is an HLS tool for creating multiple variants, a master.m3u8 file, and converting 608 captions to segmented webvtt subtitles via ffmpeg. - gitfu/manifesto",
"homepage": "https://github.com/gitfu/manifesto",
"title": "gitfu/manifesto"
},
{
"category": "specs-and-standards",
"homepage": "https://www.ansi.org/membership/how_to_join/how_3",
"title": "How Do I Become an ANSI Member"
},
{
"category": "streaming-server-and-storage",
"description": "rsync for cloud storage - Google Drive, Amazon Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Cloudfiles, Google Cloud Storage, Yandex Files - rclone/rclone",
"homepage": "https://github.com/rclone/rclone",
"title": "rclone/rclone"
},
{
"category": "tools",
"description": "A simple Python based HTTP server that sets CORS allow headers. Useful for streaming from files on local computer - Eyevinn/docker-serve",
"homepage": "https://github.com/Eyevinn/docker-serve",
"title": "Eyevinn/docker-serve"
},
{
"category": "tools",
"description": "The Stale Playlist Detector (SPD) is a tool to monitor live HLS origin endpoints for changing playlists. The Stale Playlist Detector (SPD) will use data in the top-level playlist, the child playlis...",
"homepage": "https://github.com/awslabs/aws-stale-playlist-detector",
"title": "awslabs/aws-stale-playlist-detector"
},
{
"category": "subtitles-and-captions",
"description": "Telestream Closed Captioning: MacCaption and CaptionMaker allow you to easily author, edit, create subtitles, and encode and repurpose video captions for television, web and mobile delivery",
"homepage": "https://www.telestream.net/captioning/overview.htm?utm_campaign=partners&utm_source=itunespartner.apple.com&utm_medium=text_link",
"title": "Closed Captioning and Subtitling Products - MacCaption and CaptionMaker Overview - Telestream"
},
{
"category": "hls",
"description": "Latest Apple HLS tools copy from Apple Developer Center - creeveliu/HTTPLiveStreamingTools",
"homepage": "https://github.com/creeveliu/HTTPLiveStreamingTools",
"title": "creeveliu/HTTPLiveStreamingTools"
},
{
"category": "reading",
"description": "Mux makes adding video to your app or website as easy as making a single API call. But behind the scenes is a large multistep process to analyze and transform the video into something that can be easily consumed by a device. This process is commonly called a media \u201cpipeline\u201d",
"homepage": "https://mux.com/blog/quantifying-packaging-overhead-2",
"title": "Quantifying packaging overhead"
},
{
"category": "hls",
"description": "A collection of fixes / problem solutions to HTTP video streaming - leandromoreira/http-video-streaming-troubleshooting",
"homepage": "https://github.com/leandromoreira/http-video-streaming-troubleshooting",
"title": "leandromoreira/http-video-streaming-troubleshooting"
},
{
"category": "streaming-server-and-storage",
"description": "OpenStack Storage (Swift).",
"homepage": "https://github.com/openstack/swift",
"title": "openstack/swift"
},
{
"category": "encoding",
"description": "Snowmix Video Mixer",
"homepage": "https://snowmix.sourceforge.io",
"title": "Snowmix - The Swiss Army Knife of Open Source Live Video Mixing."
},
{
"category": "subtitles-and-captions",
"description": "Automagically synchronize subtitles with video.",
"homepage": "https://github.com/smacke/subsync",
"title": "smacke/subsync"
},
{
"category": "ffmpeg",
"description": "Android java library for FFmpeg binary compiled using https://github.com/writingminds/ffmpeg-android - WritingMinds/ffmpeg-android-java",
"homepage": "https://github.com/WritingMinds/ffmpeg-android-java",
"title": "WritingMinds/ffmpeg-android-java"
},
{
"category": "ffmpeg",
"description": "Shell scripts to build FFmpeg for iOS and tvOS. ",
"homepage": "https://github.com/kewlbear/FFmpeg-iOS-build-script",
"title": "kewlbear/FFmpeg-iOS-build-script"
},
{
"category": "web",
"description": ":lollipop: Wow, such a lovely HTML5 danmaku video player - MoePlayer/DPlayer",
"homepage": "https://github.com/MoePlayer/DPlayer",
"title": "MoePlayer/DPlayer"
},
{
"category": "hls",
"description": "A server that exposes a directory for video streaming via web interface - shimberger/gohls",
"homepage": "https://github.com/shimberger/gohls",
"title": "shimberger/gohls"
},
{
"category": "hls",
"description": "A hls.js plugin to offload bandwidth from expensive traditional CDNs\uff0cwhile also maximizing a user\u2019s viewing experience. - cdnbye/hlsjs-p2p-engine",
"homepage": "https://github.com/cdnbye/hlsjs-p2p-engine",
"title": "cdnbye/hlsjs-p2p-engine"
},
{
"category": "streaming-server-and-storage",
"description": "Ant Media Server supports RTMP, RTSP, WebRTC and Adaptive Bitrate. It can also record videos in MP4, HLS and FLV - ant-media/Ant-Media-Server",
"homepage": "https://github.com/ant-media/Ant-Media-Server",
"title": "ant-media/Ant-Media-Server"
},
{
"category": "web",
"description": "A HTML5 video player with a parser that saves traffic - bytedance/xgplayer",
"homepage": "https://github.com/bytedance/xgplayer",
"title": "bytedance/xgplayer"
},
{
"category": "ffmpeg",
"description": "An S3-triggered Amazon Web Services Lambda function that runs your choice of FFmpeg \ud83c\udfac commands on a file \ud83c\udfa5 and uploads the outputs to a bucket. - binoculars/aws-lambda-ffmpeg",
"homepage": "https://github.com/binoculars/aws-lambda-ffmpeg",
"title": "binoculars/aws-lambda-ffmpeg"
},
{
"category": "ffmpeg",
"description": "FFME: The Advanced WPF MediaElement (based on FFmpeg) - unosquare/ffmediaelement",
"homepage": "https://github.com/unosquare/ffmediaelement",
"title": "unosquare/ffmediaelement"
},
{
"category": "ffmpeg",
"description": "Java wrapper around the FFmpeg command line tool.",
"homepage": "https://github.com/bramp/ffmpeg-cli-wrapper",
"title": "bramp/ffmpeg-cli-wrapper"
},
{
"category": "streaming-server-and-storage",
"description": "SRS is a simple live streaming cluster, a simple joy. - ossrs/srs",
"homepage": "https://github.com/ossrs/srs",
"title": "ossrs/srs"
},
{
"category": "encoding",
"description": "Full-HD Software Live-Video-Mixer in python.",
"homepage": "https://github.com/voc/voctomix",
"title": "voc/voctomix"
},
{
"category": "hls",
"description": "A web app that lets you insert a cut into a segment, which is then cut into two new segments. - Eyevinn/hls-cutsegment",
"homepage": "https://github.com/Eyevinn/hls-cutsegment",
"title": "Eyevinn/hls-cutsegment"
},
{
"category": "av1",
"description": "Working with the AV1 Codec Kevin Staunton-Lambert Solutions Architect R&D @kevleyski www.switch.tv",
"homepage": "https://docs.google.com/presentation/d/12_Vewc0SDpB1FycflfT4us9eipRCy0HWJVSaDMDifRs/edit?usp=sharing",
"title": "AV1 Codec"
},
{
"category": "web",
"description": "HLS, DASH, and future HTTP streaming protocols library for video.js - videojs/http-streaming",
"homepage": "https://github.com/videojs/http-streaming",
"title": "videojs/http-streaming"
},
{
"category": "hls",
"description": "Parser and generator of M3U8-playlists for Apple HLS. Library for Go language. :cinema: - grafov/m3u8",
"homepage": "https://github.com/grafov/m3u8",
"title": "grafov/m3u8"
},
{
"category": "ffmpeg",
"description": "Port of FFmpeg with Emscripten.",
"homepage": "https://github.com/Kagami/ffmpeg.js",
"title": "Kagami/ffmpeg.js"
},
{
"category": "encoding",
"description": "Basic Real-time AV Editor - allowing you to preview, mix, and route live audio and video streams on the cloud - bbc/brave",
"homepage": "https://github.com/bbc/brave",
"title": "bbc/brave"
},
{
"category": "encoding",
"description": "django-video-encoding helps to convert your videos into different formats and resolutions. - escaped/django-video-encoding",
"homepage": "https://github.com/escaped/django-video-encoding",
"title": "escaped/django-video-encoding"
},
{
"category": "web",
"description": "a video player framework aims to bring wonderful experience on browser - Chimeejs/chimee",
"homepage": "https://github.com/Chimeejs/chimee",
"title": "Chimeejs/chimee"
},
{
"category": "web",
"description": "Simplified media playback for bigscreen devices.",
"homepage": "https://github.com/bbc/bigscreen-player",
"title": "bbc/bigscreen-player"
},
{
"category": "web",
"description": "Javascript library which implements a video comparator component: two overlaped and synchronized video players each one playing an independent source. - epiclabs-io/epic-video-comparator",
"homepage": "https://github.com/epiclabs-io/epic-video-comparator",
"title": "epiclabs-io/epic-video-comparator"
},
{
"category": "players",
"description": "Highly extensible, modern, JavaScript video player. Handles MPEG-Dash / HLS / MPEG-4 and is built on top of the HTML5 video element. - matvp91/indigo-player",
"homepage": "https://github.com/matvp91/indigo-player",
"title": "matvp91/indigo-player"
},
{
"category": "players",
"description": "\ud83c\udfa5 Command line video player.",
"homepage": "https://github.com/mpv-player/mpv",
"title": "mpv-player/mpv"
},
{
"category": "web",
"description": "A React video player facilitating adaptive stream playback with custom UI and a React-friendly API. - vimond/replay",
"homepage": "https://github.com/vimond/replay",
"title": "vimond/replay"
},
{
"category": "encoding",
"homepage": "https://github.com/senko/avtk",
"title": "senko/avtk"
},
{
"category": "ffmpeg",
"homepage": "https://github.com/kkroening/ffmpeg-python",
"title": "kkroening/ffmpeg-python"
},
{
"category": "ffmpeg",
"homepage": "https://github.com/Ch00k/ffmpy",
"title": "Ch00k/ffmpy"
},
{
"category": "hls",
"description": "M3U8 library",
"homepage": "https://github.com/globocom/m3u8",
"title": "globocom/m3u8"
},
{
"category": "encoding",
"homepage": "https://github.com/Zulko/moviepy",
"title": "Zulko/moviepy"
},
{
"category": "qoe",
"homepage": "https://github.com/crunchyroll/objective_perceptual_analysis",
"title": "crunchyroll/objective_perceptual_analysis"
},
{
"category": "subtitles-and-captions",
"homepage": "https://github.com/wargarblgarbl/libgosubs",
"title": "wargarblgarbl/libgosubs"
},
{
"category": "encoding",
"homepage": "https://github.com/sitkevij/mpi",
"title": "sitkevij/mp"
},
{
"category": "qoe",
"homepage": "https://github.com/bavc/qctools",
"title": "bavc/qctools"
},
{
"category": "encoding",
"homepage": "https://github.com/jliljebl/flowblade",
"title": "jliljebl/flowblade"
},
{
"category": "hls",
"homepage": "https://github.com/muxinc/hlstools",
"title": "muxinc/hlstools"
},
{
"category": "tools",
"homepage": "https://github.com/mifi/lossless-cut",
"title": "mifi/lossless-cut"
},
{
"category": "encoding",
"description": "MLT Multimedia Framework.",
"homepage": "https://github.com/mltframework/mlt",
"title": "mltframework/mlt"
},
{
"category": "roku",
"homepage": "https://github.com/anachirino/bifserver",
"description": "Server which creates and serves up BIF files for Roku players - anachirino/bifserver",
"title": "anachirino/bifserver"
},
{
"category": "encoding",
"homepage": "https://github.com/avTranscoder/avTranscoder",
"description": "C++ API for LibAV / FFMpeg.d",
"title": "avTranscoder/avTranscoder"
},
{
"category": "encoding",
"homepage": "https://github.com/bfansports/CloudTranscode",
"description": "Distributed videos and images encoding/transcoding using Amazon SFN, FFMpeg and ImageMagic - bfansports/CloudTranscode",
"title": "bfansports/CloudTranscode"
},
{
"category": "roku",
"homepage": "https://github.com/briandunnington/Redoku",
"description": "Redux for Roku.",
"title": "briandunnington/Redoku"
},
{
"category": "roku",
"homepage": "https://github.com/briandunnington/Roact",
"description": "React for Roku",
"title": "briandunnington/Roact"
},
{
"category": "ios-tvos",
"homepage": "https://github.com/BrikerMan/BMPlayer",
"description": "A video player for iOS, based on AVPlayer, support the horizontal, vertical screen. support adjust volume, brightness and seek by slide, support subtitles. - BrikerMan/BMPlayer",
"title": "BrikerMan/BMPlayer"
},
{
"category": "roku",
"homepage": "https://github.com/CCecilia/roku-suite-desktop",
"description": "Tool suite for Roku channel development.",
"title": "CCecilia/roku-suite-desktop"
},
{
"category": "roku",
"homepage": "https://github.com/chrishoffman/brightscript-json",
"description": "JSON parser for Roku's proprietary Brightscript language - chrishoffman/brightscript-json",
"title": "chrishoffman/brightscript-json"
},
{
"category": "ios-tvos",
"homepage": "https://github.com/DaMingShen/SUCacheLoader",
"description": "AVPlayer ",
"title": "DaMingShen/SUCacheLoader"
},
{
"category": "talks-presentations-podcasts",
"homepage": "https://www.youtube.com/playlist?list=PLkyaYNWEKcOf98lZxnCcL6y7ZIVU3oSYO",
"description": "2022 Demuxed talks & presentations",
"title": "Demuxed 2022"
},
{
"category": "talks-presentations-podcasts",
"homepage": "https://www.youtube.com/playlist?list=PLkyaYNWEKcOfD1GYFxFbZXDP03XM-cZPg",
"description": "2021 Demuxed talks & presentations",
"title": "Demuxed 2021"
},
{
"category": "talks-presentations-podcasts",
"homepage": "https://www.youtube.com/playlist?list=PLkyaYNWEKcOcDlGjEbpxBe4woCJGHrarN",
"description": "2020 Demuxed talks & presentations",
"title": "Demuxed 2020"
},
{
"category": "talks-presentations-podcasts",
"homepage": "https://m.youtube.com/playlist?list=PLkyaYNWEKcOf_C_6W45abNvXMb40xUUqh",
"description": "2019 Demuxed talks & presentations",
"title": "Demuxed 2019"
},
{
"category": "talks-presentations-podcasts",
"homepage": "https://www.youtube.com/watch?v=bfK_f7GBA8s&list=PLkyaYNWEKcOfARqEht42i1P4kBemzEV2V",
"title": "Demuxed 2018",
"description": "2018 Demuxed talks & presentations"
},
{
"category": "talks-presentations-podcasts",
"homepage": "https://www.youtube.com/watch?v=PSdhW-R9u6s&list=PLkyaYNWEKcOfntbMd6KtHhF7qpL9hj6of",
"title": "Demuxed 2017",
"description": "2017 Demuxed talks & presentations"
},
{
"category": "talks-presentations-podcasts",
"homepage": "https://www.youtube.com/watch?v=kEo2TrXm7F4&list=PLkyaYNWEKcOekC2m9Na77G40Lmhb1bnsK",
"title": "Demuxed 2016",
"description": "2016 Demuxed talks & presentations"
},
{
"category": "talks-presentations-podcasts",
"homepage": "https://www.heavybit.com/library/podcasts/demuxed",
"description": "Demuxed is a podcast made for and by engineers working with video. Brought to you by Heavybit.",
"title": "Demuxed | Heavybit"
},
{
"category": "talks-presentations-podcasts",
"homepage": "https://mile-high.video/files/mhv2019",
"description": "Mile High Video 2019 talks & presentations",
"title": "Mile High Video 2019 Proceedings"
},
{
"category": "talks-presentations-podcasts",
"homepage": "https://mile-high.video/files/mhv2018",
"description": "Mile High Video 2018 talks & presentations",
"title": "Mile High Video 2018 Proceedings"
},
{
"category": "reading",
"homepage": "https://medium.com/@eyevinntechnology/demystifying-html5-video-player-e480846328f0",
"description": "In this post we will go under the hood of a HTML video player for video streaming. With the exception of Apple and their browser Safari, no\u2026",
"title": "Demystifying HTML5 Video Player"
},
{
"category": "ios-tvos",
"homepage": "https://github.com/DeviLeo/DLGPlayer",
"description": "A media player for iOS based on FFmpeg 4.0.",
"title": "DeviLeo/DLGPlayer"
},
{
"category": "hls",
"homepage": "https://github.com/dhairav/URLSessionHLSDownload",
"description": "A swift 3 implementation for downloading HLS content and play it back using native AVPlayer - dhairav/URLSessionHLSDownload",
"title": "dhairav/URLSessionHLSDownload"
},
{
"category": "roku",
"homepage": "https://github.com/dphang/roku-lib",
"description": "Some useful Roku utilities.",
"title": "dphang/roku-lib"
},
{
"category": "ffmpeg",
"homepage": "https://github.com/ElderByte-/docker-java-media",
"description": "JRE 10 (Java 10) and media tools (ffmpeg).",
"title": "ElderByte-/docker-java-media"
},
{
"category": "hls",
"homepage": "https://github.com/epiclabs-io/hls-analyzer",
"description": "Analyzer for HTTP Live Streams (HLS) content.",
"title": "epiclabs-io/hls-analyzer"
},
{
"category": "roku",
"homepage": "https://github.com/exegersha/network-benchmark",
"description": "Proof of concept. Roku app implementing network layer using scene graph nodes. - exegersha/network-benchmark",
"title": "exegersha/network-benchmark"
},
{
"category": "ffmpeg",
"homepage": "https://github.com/FallingSnow/h265ize",
"description": "A node utility utilizing ffmpeg to encode videos with the hevc codec. - FallingSnow/h265ize",
"title": "FallingSnow/h265ize"
},
{
"category": "ffmpeg",
"homepage": "https://github.com/FFmpeg/FFmpeg",
"description": "Mirror of git://source.ffmpeg.org/ffmpeg.git.",
"title": "FFmpeg/FFmpeg"
},
{
"category": "hls",
"homepage": "https://github.com/flavioribeiro/nginx-audio-track-for-hls-module",
"description": ":sound: Nginx module that generates audio track for HTTP Live Streaming (HLS) streams on the fly. - flavioribeiro/nginx-audio-track-for-hls-module",
"title": "flavioribeiro/nginx-audio-track-for-hls-module"
},
{
"category": "hls",
"homepage": "https://github.com/flavioribeiro/nginx-vod-module-fmp4-hls",
"description": "Play fragmented mp4's on HLS using nginx-vod-module - flavioribeiro/nginx-vod-module-fmp4-hls",
"title": "flavioribeiro/nginx-vod-module-fmp4-hls"
},
{
"category": "roku",
"homepage": "https://github.com/gabek/Amplitude-Brightscript",
"description": "A Brightscript (Roku) library for submitting analytics to Amplitude - gabek/Amplitude-Brightscript",
"title": "gabek/Amplitude-Brightscript"
},
{
"category": "roku",
"homepage": "https://github.com/gabek/SegmentIO-Brightscript",
"description": "A BrightScript interface to SegmentIO event tracking - gabek/SegmentIO-Brightscript",
"title": "gabek/SegmentIO-Brightscript"
},
{
"category": "roku",
"homepage": "https://github.com/georgejecook/rooibos",
"description": "simple, flexible, fun brightscript test framework for roku scenegraph apps - georgejecook/rooibos",
"title": "georgejecook/rooibos"
},
{
"category": "hls",
"homepage": "https://github.com/globocom/hlsclient",
"description": "Python HLS Client.",
"title": "globocom/hlsclient"
},
{
"category": "ios-tvos",
"homepage": "https://github.com/googleads/google-media-framework-ios",
"description": "The Google Media Framework (GMF) is a lightweight media player designed to make video playback and integration with the Google IMA SDK on iOS easier. - googleads/google-media-framework-ios",
"title": "googleads/google-media-framework-ios"
},
{
"category": "ios-tvos",
"homepage": "https://github.com/hanton/HTY360Player",
"description": "Open Source iOS 360 Degree Panorama Video Player.",
"title": "hanton/HTY360Player"
},
{
"category": "ios-tvos",
"homepage": "https://github.com/iina/iina",
"description": "The modern video player for macOS.",
"title": "iina/iina"
},
{
"category": "ios-tvos",
"homepage": "https://code.videolan.org/videolan/vlc-ios",
"description": "VLC for iOS is the official port of VLC on the iOS/tvOS platforms.",
"title": "videolan/vlc-ios"
},
{
"category": "hls",
"homepage": "https://github.com/imsanthosh/HLS-Stream-health-monitoring-tool",
"description": "HLS stream health monitoring utility tool provides an report of live HLS stream. This utility tool checks the all available bitrate streams and generates the report in html file format. HTML file i...",
"title": "imsanthosh/HLS-Stream-health-monitoring-tool"
},
{
"category": "roku",
"homepage": "https://github.com/juliomalves/roku-libs",
"description": "BrightScript Utility Libraries.",
"title": "juliomalves/roku-libs"
},
{
"category": "roku",
"homepage": "https://github.com/karimkawambwa/roku-framework-example",
"description": "This is a project to show how the boku-framework by Karim Kawambwa is used - karimkawambwa/roku-framework-example",
"title": "karimkawambwa/roku-framework-example"
},
{
"category": "roku",
"homepage": "https://github.com/karimkawambwa/roku-framework",
"description": "Roku app framework to make app creation easier and structured. Under construction - karimkawambwa/roku-framework",
"title": "karimkawambwa/roku-framework"
},
{
"category": "ios-tvos",
"homepage": "https://github.com/kodlian/TVVLCPlayer",
"description": "TVVLCPlayer lets you integrate easily a powerfull video player with playback control views to your tvOS apps. - kodlian/TVVLCPlayer",
"title": "kodlian/TVVLCPlayer"
},
{
"category": "tools",
"homepage": "https://github.com/Kthulu120/liquid_dl",
"description": "Liquid-dl is a simple tool for utlities such as FFMPEG, youtube-dl, and scdl. It provides a simple framework with simple point and click options allowing users to just click on what they need and u...",
"title": "Kthulu120/liquid_dl"
},
{
"category": [
"learning",
"ffmpeg"
],
"homepage": "https://github.com/leandromoreira/ffmpeg-libav-tutorial",
"description": "FFmpeg libav tutorial - learn how media works from basic to transmuxing, transcoding and more - leandromoreira/ffmpeg-libav-tutorial",
"title": "leandromoreira/ffmpeg-libav-tutorial"
},
{
"category": "ios-tvos",
"homepage": "https://github.com/libobjc/SGPlayer",
"description": "A powerful media play framework for iOS, macOS, and tvOS. - libobjc/SGPlayer",
"title": "libobjc/SGPlayer"
},
{
"category": "players",
"homepage": "https://github.com/lightspark/lightspark",
"description": "An open source flash player implementation.",
"title": "lightspark/lightspark"
},
{
"category": "hls",
"homepage": "https://github.com/majamee/arch-ffmpeg-gpac",
"description": "A ready-prepared video transcoding pipeline to create DASH/ HLS compatible video files & playlists - majamee/arch-ffmpeg-gpac",
"title": "majamee/arch-ffmpeg-gpac"
},
{
"category": "ffmpeg",
"homepage": "https://github.com/markus-perl/ffmpeg-build-script",
"description": "The FFmpeg build script provides an easy way to build a static FFmpeg on OSX and Linux with non-free codecs included. - markus-perl/ffmpeg-build-script",
"title": "markus-perl/ffmpeg-build-script"
},
{
"category": "roku",
"homepage": "https://github.com/MediaBrowser/Emby.Roku",
"description": "Emby for Roku. ",
"title": "MediaBrowser/Emby.Roku"
},
{
"category": "ffmpeg",
"homepage": "https://github.com/microshow/RxFFmpeg",
"description": "\ud83d\udd25RxFFmpeg \u662f\u57fa\u4e8e ( FFmpeg 4.0 + X264 + mp3lame + fdk-aac )",
"title": "microshow/RxFFmpeg"
},
{
"category": "hls",
"homepage": "https://github.com/mifi/hls-vod",
"description": "HTTP Live Streaming with on-the-fly encoding of any video file for Web/Apple TV/iPhone/iPad/iPod - mifi/hls-vod",
"title": "mifi/hls-vod"
},
{
"category": "roku",
"homepage": "https://github.com/mrkjffrsn/RokuFramework",
"description": "An opensource Roku framework.",
"title": "mrkjffrsn/RokuFramework"
},
{
"category": "hls",
"homepage": "https://github.com/nmrony/hlsdownloader-cli",
"description": "Downloads HLS Playlist file and TS chunks using Terminal - nmrony/hlsdownloader-cli",
"title": "nmrony/hlsdownloader-cli"
},
{
"category": "roku",
"homepage": "https://github.com/nod/rokumote",
"description": "osx app for controlling your roku because sometimes your kids lose the remote - nod/rokumote",
"title": "nod/rokumote"
},
{
"category": "players",
"homepage": "https://github.com/nytimes/ios-360-videos",
"description": "NYT360Video plays 360-degree video streamed from an AVPlayer on iOS. - nytimes/ios-360-videos",
"title": "nytimes/ios-360-videos"
},
{
"category": "hls",
"homepage": "https://github.com/openHPI/nginx-hls-analyzer",
"description": "Fork of fmsloganalyzer to adapt it for HLS streaming analyzes with nginx - openHPI/nginx-hls-analyzer",
"title": "openHPI/nginx-hls-analyzer"
},
{
"category": "ios-tvos",
"homepage": "https://github.com/piemonte/Player",
"description": "\u25b6\ufe0f video player in Swift, simple way to play and stream media on iOS/tvOS - piemonte/Player",
"title": "piemonte/Player"
},
{
"category": "encoding",
"homepage": "https://github.com/ptrandev/swift-encoder",
"description": "A fire-and-forget shell script that encodes multiple video and audio files with ffmpeg. - ptrandev/swift-encoder",
"title": "ptrandev/swift-encoder"
},
{
"category": "hls",
"homepage": "https://github.com/r-plus/HLSion",
"description": "HTTP Live Streaming (HLS) download manager to offline playback. - r-plus/HLSion",
"title": "r-plus/HLSion"
},
{
"category": "ios-tvos",
"homepage": "https://github.com/renzifeng/ZFPlayer",
"description": "Support customization of any player SDK and control layer",
"title": "renzifeng/ZFPlayer"
},
{
"category": "roku",