Repository: sitkevij/awesome-video Branch: master Commit: ed2fdff4f078 Files: 13 Total size: 46.3 KB Directory structure: gitextract_cisid0cx/ ├── .github/ │ └── workflows/ │ └── lint.yml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .markdownlint-cli2.jsonc ├── .markdownlint.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── check_link.sh ├── lint_readme.sh └── package.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/lint.yml ================================================ name: lint-readme on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: "20" - name: Install dependencies run: npm ci - name: Run markdownlint run: npx markdownlint-cli2 "**/*.md" "#node_modules" - name: update and install os multi-line script run: | sudo apt-get update -qq sudo apt-get install -qq shellcheck shellcheck check_link.sh - name: Run lint_readme.sh run: | chmod +x lint_readme.sh ./lint_readme.sh ================================================ FILE: .gitignore ================================================ # Dependencies node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* .pnpm-debug.log* # Runtime data pids *.pid *.seed *.pid.lock # Directory for instrumented libs generated by jscoverage/JSCover lib-cov # Coverage directory used by tools like istanbul coverage/ *.lcov .nyc_output # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) .grunt # Bower dependency directory (https://bower.io/) bower_components # node-waf configuration .lock-wscript # Compiled binary addons (https://nodejs.org/api/addons.html) build/Release # Dependency directories jspm_packages/ # Snowpack dependency directory (https://snowpack.dev/) web_modules/ # TypeScript cache *.tsbuildinfo # Optional npm cache directory .npm # Optional eslint cache .eslintcache # Optional stylelint cache .stylelintcache # Microbundle cache .rpt2_cache/ .rts2_cache_cjs/ .rts2_cache_es/ .rts2_cache_umd/ # Optional REPL history .node_repl_history # Output of 'npm pack' *.tgz # Yarn Integrity file .yarn-integrity # dotenv environment variable files .env .env.development.local .env.test.local .env.production.local .env.local # parcel-bundler cache (https://parceljs.org/) .cache .parcel-cache # Next.js build output .next out # Nuxt.js build / generate output .nuxt dist # Gatsby files .cache/ public # Vuepress build output .vuepress/dist # Serverless directories .serverless/ # FuseBox cache .fusebox/ # DynamoDB Local files .dynamodb/ # TernJS port file .tern-port # Stores VSCode versions used for testing VSCode extensions .vscode-test # yarn v2 .yarn/cache .yarn/unplugged .yarn/build-state.yml .yarn/install-state.gz .pnp.* # IDEs and editors .idea/ .vscode/ *.swp *.swo *~ .DS_Store *.sublime-project *.sublime-workspace # OS files .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db # Logs logs *.log # Temporary files *.tmp *.temp .cache/ ================================================ FILE: .husky/pre-commit ================================================ npm test ================================================ FILE: .markdownlint-cli2.jsonc ================================================ // Configuration for markdownlint-cli2 { // Use the existing markdownlint configuration "config": { "extends": ".markdownlint.json" }, // Explicitly ignore these patterns "ignores": [ "*.ignore.md", "**/*.ignore.md", "target/**", "node_modules/**" ], // Glob patterns to include "globs": [ "**/*.md" ] } ================================================ FILE: .markdownlint.json ================================================ { "MD013": { "line_length": 500, "heading_line_length": 100, "code_block_line_length": 100, "code_blocks": false, "tables": false, "headings": true, "headers": true, "strict": false, "stern": false }, "MD025": false, "MD034": false } ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [Contact Email Address](https://github.com/sitkevij). The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] [homepage]: http://contributor-covenant.org [version]: http://contributor-covenant.org/version/1/4/ ================================================ FILE: CONTRIBUTING.md ================================================ # Contribution Guidelines **To add, remove, or change things on the list:** Submit a pull request This is a specially curated list for high-quality, video resources. - List items should be sorted _alphabetically_. - Each item should be limited to one link. - The link should be the name of the package or project. - Descriptions should be clear, concise, and non-promotional. - Descriptions should follow the link, on the same line and end with a punctuation mark. - At least 3 items are needed to create a new category. Please contribute links to packages/projects you have used or are familiar with. This will help ensure high-quality entries. ================================================ FILE: LICENSE ================================================ CC0 1.0 Universal Statement of Purpose The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; ii. moral rights retained by the original author(s) and/or performer(s); iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; v. rights protecting the extraction, dissemination, use and reuse of data in a Work; vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. 4. Limitations and Disclaimers. a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. For more information, please see ================================================ FILE: Makefile ================================================ .PHONY: help install lint lint-readme check shellcheck test clean setup # Default target help: @echo "Available targets:" @echo " make install - Install npm dependencies" @echo " make lint - Lint markdown files" @echo " make lint-readme - Lint README.md format (awesome-list style)" @echo " make check - Run documentation checks (whitespace, URLs)" @echo " make shellcheck - Run shellcheck on shell scripts" @echo " make test - Run all checks (lint, lint-readme, shellcheck, check)" @echo " make clean - Remove temporary files" @echo " make setup - Install dependencies and setup husky hooks" # Install npm dependencies install: npm install # Lint markdown files lint: npx markdownlint-cli2 "**/*.md" "#node_modules" # Lint README.md format lint-readme: ./lint_readme.sh # Run shellcheck on shell scripts shellcheck: shellcheck lint_readme.sh # Run all checks test: lint lint-readme shellcheck @echo "All checks passed!" # Clean temporary files clean: rm -f urls.tmp urls_result.tmp rm -rf node_modules # Setup project (install dependencies and setup husky) setup: install npx husky install || true ================================================ FILE: README.md ================================================ # Awesome Video Resources ![build](https://github.com/sitkevij/awesome-video/actions/workflows/lint.yml/badge.svg) ![GitHub Repo stars](https://img.shields.io/github/stars/sitkevij/awesome-video) ![GitHub forks](https://img.shields.io/github/forks/sitkevij/awesome-video) [![Awesome](https://awesome.re/badge-flat.svg)](https://awesome.re) A curated list of awesome video frameworks, libraries, specifications and software. ## Contributing Please take a look at the [contribution guidelines](https://github.com/sitkevij/awesome-video/blob/master/CONTRIBUTING.md) first. Thanks to all [contributors](https://github.com/sitkevij/awesome-video/graphs/contributors). - [Awesome Video Resources](#awesome-video-resources) - [Contributing](#contributing) - [Analysis tools](#analysis-tools) - [AR/VR/360](#arvr360) - [Captions and Subtitles](#captions-and-subtitles) - [Codecs and Encoders](#codecs-and-encoders) - [Conferences](#conferences) - [Conferencing](#conferencing) - [Container Formats and Muxing](#container-formats-and-muxing) - [Learning Resources](#learning-resources) - [Players](#players) - [Language and platform specific libraries](#language-and-platform-specific-libraries) - [Android/Kotlin](#androidkotlin) - [C/C++](#cc) - [iOS Swift](#ios-swift) - [Javascript](#javascript) - [Python](#python) - [Go](#go) - [Rust](#rust) - [Metadata](#metadata) - [Media Processing](#media-processing) - [Streaming Protocols](#streaming-protocols) - [Video AI/ML](#video-aiml) - [Video Capture and Recording](#video-capture-and-recording) ## Analysis tools - [bitrate-plotter](https://github.com/CrypticSignal/bitrate-plotter) - Plots a graph showing the bitrate every second or the bitrate of every GOP. - [MpegTsAnalyzer](https://github.com/small-teton/MpegTsAnalyzer) - Analyzer of MPEG2 Transport Stream. - [plot-av](https://github.com/wangyoucao577/plot-av) - Plot Audio/Video streams for better insights. - [QCtools](https://github.com/bavc/qctools) - Quality Control Tools for Video Preservation, helps users to analyze and understand digitized video files. - [tsduck](https://github.com/tsduck/tsduck) - MPEG Transport Stream Toolkit. - [tstools](https://github.com/OlivierLeBozec/tstools) - Display PCR, DTS, PTS, bitrate, jitter of a mpeg TS. - [videobench](https://github.com/JNoDuq/videobench) - VMAF PSNR Bitrate Analyzer. - [vivict](https://github.com/SVT/vivict) - In-browser tool for subjective comparison of the visual quality of different encodings. - [VTCLab Media Analyzer](https://media-analyzer.pro) - In-browser tool that helps to analyze the internal structure of MPEG-TS and MP4/MOV files. - [YUView](https://github.com/IENT/YUView) - The Free and Open Source Cross Platform YUV Viewer with an advanced analytics toolset. ## AR/VR/360 - [ARVideoKit](https://github.com/AFathi/ARVideoKit) - Capture & record ARKit videos, photos, live photos, and GIFs. - [kaleidoscope](https://github.com/thiagopnts/kaleidoscope) - An embeddable, lightweight 360º video/image viewer. ## Captions and Subtitles - [Aegisub](https://github.com/Aegisub/Aegisub) - Cross-platform advanced subtitle editor. - [ccextractor](https://github.com/CCExtractor/ccextractor) - Tool to extract closed captions from video streams. - [Subtitle Edit](https://github.com/SubtitleEdit/subtitleedit) - Free and open source editor for video subtitles. - [vtt.js](https://github.com/mozilla/vtt.js) - A JavaScript implementation of the WebVTT specification. - [WebVTT](https://www.w3.org/TR/webvtt1/) - WebVTT W3C 'Web Video Text Tracks Format' specification. ## Codecs and Encoders - [aom](https://aomedia.googlesource.com/aom/) - AV1 reference encoder and decoder from the Alliance for Open Media. - [dav1d](https://code.videolan.org/videolan/dav1d) - Fast and small AV1 decoder written in assembly and C. - [kvazaar](https://github.com/ultravideo/kvazaar) - Open-source HEVC encoder. - [libvpx](https://chromium.googlesource.com/webm/libvpx) - VP8/VP9 codec SDK. - [openh264](https://github.com/cisco/openh264) - Open source H.264 codec. - [rav1e](https://github.com/xiph/rav1e) - The fastest and safest AV1 encoder written in Rust. - [x264](https://www.videolan.org/developers/x264.html) - Free software library for encoding H.264/AVC video streams. - [x265](https://bitbucket.org/multicoreware/x265_git) - Free software library for encoding H.265/HEVC video streams. ## Conferences - [Demuxed](http://demuxed.com) - The conference and community for developers working with video. - [IBC](https://www.ibc.org/) - International Broadcasting Convention, annual trade show for media and entertainment. - [Mile High Video](https://www.milehighvideo.org/) - Conference focused on video streaming and encoding. - [NAB Show](https://nabshow.com/) - National Association of Broadcasters annual convention. ## Conferencing - [BigBlueButton](https://github.com/bigbluebutton/bigbluebutton) - Open source web conferencing system for online learning. - [Jitsi Meet](https://github.com/jitsi/jitsi-meet) - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application. - [OpenVidu](https://github.com/OpenVidu/openvidu) - Easy video calls in your web or mobile app. ## Container Formats and Muxing - [gpac](https://github.com/gpac/gpac) - Modular multimedia framework for packaging, streaming and playback (includes MP4Box). - [l-smash](https://github.com/l-smash/l-smash) - MP4 muxer and demuxer library. - [matroska](https://www.matroska.org/) - Open standard free container format for video and audio. - [MKVToolNix](https://mkvtoolnix.download/) - Set of tools to create, alter and inspect Matroska files. - [mp4v2](https://github.com/enzo1982/mp4v2) - Library and tools to read, create, and modify MP4 files. ## Learning Resources - [digital video introduction](https://github.com/leandromoreira/digital_video_introduction) - A hands-on introduction to video technology: image, video, codec (av1, vp9, h265) and more (ffmpeg encoding). - [ffmpeg encoding course](https://github.com/slhck/ffmpeg-encoding-course) - An introduction to FFmpeg and its tools. - [List of Streams](https://github.com/bengarney/list-of-streams) - Community list of public test streams for HLS and DASH. - [Live Stream from Desktop](https://github.com/leandromoreira/live-stream-from-desktop) - Provide guidance to test live streaming (mpeg-dash or hls) or vod from your desktop. - [Streaming Onboarding](https://github.com/Eyevinn/streaming-onboarding) - New to streaming and don't know where to start? This is the place for you!. ## Players - [bigscreen-player](https://github.com/bbc/bigscreen-player) - Simplify video and audio playback on a wide range of 'bigscreen' devices (TVs, set-top boxes, games consoles, and streaming devices). - [chimee](https://github.com/Chimeejs/chimee) - A video player framework aims to bring wonderful experience on browser. - [clappr](https://github.com/clappr/clappr) - An extensible media player for the web. - [dash.js](https://github.com/Dash-Industry-Forum/dash.js) - JavaScript DASH client using Media Source Extension (MSE). - [epic-video-comparator](https://github.com/epiclabs-io/epic-video-comparator) - Javascript library which implements a video comparator component: two overlaped and synchronized video players each one playing an independent source. - [ExoPlayer](https://github.com/google/ExoPlayer) - An extensible media player for Android. - [hls.js](https://github.com/video-dev/hls.js) - JavaScript HLS client using Media Source Extension (MSE). - [iina](https://github.com/lhc70000/iina) - The modern video player for macOS. - [ijkplayer](https://github.com/Bilibili/ijkplayer) - Android/iOS video player based on FFmpeg n3.4, with MediaCodec, VideoToolbox support. - [indigo-player](https://github.com/matvp91/indigo-player) - Highly extensible, modern, JavaScript video player. Handles MPEG-Dash / HLS / MPEG-4 and is built on top of the HTML5 video element. - [mobileplayer-ios](https://github.com/mobileplayer/mobileplayer-ios) - A powerful and completely customizable media player for iOS. - [mpv](https://github.com/mpv-player/mpv) - Video player based on MPlayer/mplayer2. - [ngx-videogular](https://github.com/videogular/ngx-videogular) - The HTML5 video player for Angular 2 and successor to videogular2. - [openplayerjs](https://github.com/openplayerjs/openplayerjs) - Lightweight HTML5 video/audio player with smooth controls and ability to play VAST/VPAID/VMAP ads. - [plyr](https://github.com/sampotts/plyr) - A simple HTML5, YouTube and Vimeo player. - [replay](https://github.com/vimond/replay) - A React video player facilitating adaptive stream playback with custom UI and a React-friendly API. - [shaka-player](https://github.com/google/shaka-player) - JavaScript player library / DASH client / MSE-EME player. - [Video.js](https://github.com/videojs/video.js) - open source HTML5 & Flash video player. - [vlc](https://github.com/videolan/vlc) - VLC media player. ## Language and platform specific libraries ### Android/Kotlin - [android-gpuimage](https://github.com/cats-oss/android-gpuimage) - Android filters based on OpenGL for image and video processing. - [CameraX](https://developer.android.com/training/camerax) - Jetpack library for camera and video capture on Android. - [FFmpegKit](https://github.com/arthenica/ffmpeg-kit) - FFmpeg for Android, iOS, Linux, macOS, tvOS, and Flutter. - [LiTr](https://github.com/aspect-apps/litr) - Lightweight video/audio transformation library for Android. - [Media3](https://github.com/androidx/media) - Jetpack Media3 library including ExoPlayer for Android media playback. ### C/C++ - [libav](https://libav.org/) - Collection of libraries and tools to process multimedia content. - [live555](http://www.live555.com/liveMedia/) - C++ libraries for multimedia streaming using open standard protocols. ### iOS Swift - [FFmpeg-iOS-build](https://github.com/kewlbear/FFmpeg-iOS-build-script) - Shell scripts to build FFmpeg for iOS and tvOS. - [PBJVision](https://github.com/piemonte/PBJVision) - iOS Media Capture – features touch-to-record video, slow motion, and photography. ### Javascript - [channel-engine](https://github.com/Eyevinn/channel-engine) - VOD to Live Engine Library. - [ffmpeg.js](https://github.com/Kagami/ffmpeg.js) - Javascript FFmpeg bindings, port of FFmpeg with Emscripten. - [jMuxer](https://github.com/samirkumardas/jmuxer) - A simple javascript mp4 muxer for non-standard streaming communications protocol. - [remotion](https://github.com/remotion-dev/remotion) - Create Videos programmatically with React. - [Revideo](https://github.com/redotvideo/revideo) - A Typescript framework for programmatic video creation & editing. ### Python - [atvk](https://github.com/senko/avtk) - Audio/Video toolkit for Python. - [brave](https://github.com/bbc/brave) - Basic Real-time AV Editor - allowing you to preview, mix, and route live audio and video streams on the cloud. - [dash-live-source-simulator](https://github.com/Dash-Industry-Forum/dash-live-source-simulator) - DASH live source simulator providing reference live content. - [django-video-encoding](https://github.com/escaped/django-video-encoding) - django-video-encoding helps to convert your videos into different formats and resolutions. - [ffmpeg-python](https://github.com/kkroening/ffmpeg-python) - Python bindings for FFmpeg - with complex filtering support. - [ffmpy](https://github.com/Ch00k/ffmpy) - Pythonic interface for FFmpeg/FFprobe command line. - [hls-analyzer](https://github.com/epiclabs-io/hls-analyzer) - Analyzer for HTTP Live Streams (HLS) content. - [hls-relay](https://github.com/Eyevinn/hls-relay) - Script to pull HLS stream from one origin and push to another origin. - [hls-to-dash](https://github.com/Eyevinn/hls-to-dash) - Open source packager and tools to rewrap live HLS to live MPEG DASH. - [m3u8](https://github.com/globocom/m3u8) - Python m3u8 Parser for HTTP Live Streaming (HLS) Transmissions. - [moviepy](https://github.com/Zulko/moviepy) - Video editing with Python. - [objective_perceptual_analysis](https://github.com/crunchyroll/objective_perceptual_analysis) - Objective Perceptual Analysis, Compression Karma Predictor. - [PyAV](https://github.com/mikeboers/PyAV) - Pythonic bindings for FFmpeg's libraries. - [pycaption](https://github.com/pbs/pycaption) - Python module to read/write popular video caption formats. - [pychromecast](https://github.com/balloob/pychromecast) - Library for Python 3 to communicate with the Google Chromecast. - [PyLivestream](https://github.com/scivision/PyLivestream) - Simple cross-platform FFmpeg-based live streaming to YouTube, Periscope, Twitch, Facebook Live and more. - [python-video-converter](https://github.com/senko/python-video-converter) - Python Video Converter (ffmpeg wrapper). - [vidgear](https://github.com/abhiTronix/vidgear) - High-performance cross-platform Video Processing Python framework powerpacked with unique trailblazing features. - [vod-to-live](https://github.com/Eyevinn/vod-to-live) - A python library to generate Live HLS from VOD. - [webm.py](https://github.com/Kagami/webm.py) - Encode WebM videos. ### Go - [gmf](https://github.com/3d0c/gmf) - Go bindings for FFmpeg av\* libraries. - [go-astisub](https://github.com/asticode/go-astisub) - Manipulate subtitles in GO (.srt, .stl, .ttml, .webvtt, .ssa/.ass, teletext, .smi, etc.). - [go-astits](https://github.com/asticode/go-astits) - Parse and demux MPEG Transport Streams (.ts) natively in GO. - [goav](https://github.com/giorgisio/goav) - Comphrensive Go bindings for FFmpeg. - [goffmpeg](https://github.com/xfrr/goffmpeg) - FFMPEG wrapper written in GO. - [gst](https://github.com/ziutek/gst) - Go bindings for GStreamer. - [libgosubs](https://github.com/wargarblgarbl/libgosubs) - Subtitle format support for go. Supports .srt, .ttml, and .ass. - [libvlc-go](https://github.com/adrg/libvlc-go) - Go bindings for libVLC 2.X/3.X/4.X and high-level media player interface. - [snickers](http://github.com/snickers/snickers) - An open source alternative to the video cloud encoding services. - [v4l](https://github.com/korandiz/v4l) - Video capture library for Linux, written in Go. ### Rust - [av-scenechange](https://github.com/rust-av/av-scenechange) - Scene change detection library for video encoding. - [mp4parse-rust](https://github.com/mozilla/mp4parse-rust) - Parser for ISO Base Media Format aka video/mp4 written in Rust. - [rust-av](https://github.com/rust-av/rust-av) - Multimedia toolkit written in pure Rust. ## Metadata - [ExifTool](https://exiftool.org/) - Read, write and edit meta information in a wide variety of files including video. - [MediaInfo](https://mediaarea.net/en/MediaInfo) - Convenient unified display of the most relevant technical and tag data for video and audio files. - [mpi](https://github.com/sitkevij/mpi) - Rust-based MPEG-4 box inspector with TOML output. - [photon](https://github.com/Netflix/photon) - Java implementation of the SMPTE standard, Interoperable Master Format (IMF). ## Media Processing - [Av1an](https://github.com/master-of-zen/Av1an) - Cross-platform command-line AV1 / VP9 / HEVC / H264 / VVC encoding framework with per scene quality encoding. - [Bento4](https://github.com/axiomatic-systems/Bento4) - Full-featured MP4 format and MPEG DASH library and tools. - [easyVmaf](https://github.com/gdavila/easyVmaf) - Python script to easily compute VMAF using FFmpeg. It allows to deinterlace, scale and sync Ref and Distorted video automatically. - [FFmpeg](http://ffmpeg.org) - A complete, cross-platform solution to record, convert and stream audio and video. - [FastlyConvert](https://www.fastlyconvert.com/) - Free online video converter and compressor. Supports MKV to MP4, video compression, video to GIF. Browser-based, no installation required. - [ffmpeg-explorer](https://github.com/antiboredom/ffmpeg-explorer/) - Interactive FFMPEG Command Generator. - [Flowblade](https://github.com/jliljebl/flowblade) - Video editor for Linux. - [fluster](https://github.com/fluendo/fluster) - Testing framework for decoders conformance. - [gifify](https://github.com/vvo/gifify) - Convert any video file to an optimized animated GIF. - [GStreamer](https://gstreamer.freedesktop.org/) - Pipeline-based multimedia framework for audio and video processing. - [HandBrake](https://github.com/HandBrake/HandBrake) - Open source video transcoder with presets for common output formats. - [hlstools](https://github.com/muxinc/hlstools/) - Tools for analyzing and processing hls streams. - [Kdenlive](https://github.com/KDE/kdenlive) - Free and open source video editor by KDE. - [lossless-cut](https://github.com/mifi/lossless-cut) - Cross platform GUI tool for lossless trimming / cutting of video and audio files using ffmpeg. - [MLT](https://github.com/mltframework/mlt) - MLT Multimedia Framework. - [multistreamer](https://github.com/jprjr/multistreamer) - A webapp for publishing video to multiple streaming services at once. - [nginx-rtmp-module](https://github.com/arut/nginx-rtmp-module) - NGINX-based Media Streaming Server. - [nginx-vod-module](https://github.com/kaltura/nginx-vod-module) - NGINX-based MP4 Repackager. - [Olive](https://github.com/olive-editor/olive) - Free non-linear video editor. - [ott-packager](https://github.com/cannonbeach/ott-packager) - OTT streaming packager supporting ABR streaming for DASH and HLS. - [PHP-FFmpeg-video-streaming](https://github.com/aminyazdanpanah/PHP-FFmpeg-video-streaming) - Package media content for online streaming(DASH and HLS) using FFmpeg. - [QtAV](https://github.com/wang-bin/QtAV) - A cross-platform multimedia framework based on Qt and FFmpeg. - [qtlmovie](https://github.com/qtlmovie/qtlmovie) - A specialized Qt frontend for FFmpeg and other free media tools. - [shaka-packager](https://github.com/google/shaka-packager) - A media packaging and development framework for VOD and Live DASH and HLS applications, supporting Common Encryption for Widevine and other DRM Systems. - [Shotcut](https://github.com/mltframework/shotcut) - Free, open source, cross-platform video editor. - [SVT-AV1](https://github.com/OpenVisualCloud/SVT-AV1) - Scalable Video Technology AV1 encoder. - [SVT-HEVC](https://github.com/OpenVisualCloud/SVT-HEVC) - Scalable Video Technology HEVC encoder. - [SVT-VP9](https://github.com/OpenVisualCloud/SVT-VP9) - Scalable Video Technology VP9 encoder. - [tomcast](https://georgi.unixsol.org/git/gfto/tomcast) - A simple http2multicast daemon designed to work 24/7. - [video-thumbnail-generator](https://github.com/flavioribeiro/video-thumbnail-generator) - Generate thumbnail sprites from videos. - [video-transcoding-api](https://github.com/NYTimes/video-transcoding-api) - Agnostic API to transcode media assets across different cloud services. - [vpp](https://github.com/matt-42/vpp) - Video++, a C++14 high performance video and image processing library. ## Streaming Protocols - [aiortc](https://github.com/aiortc/aiortc) - WebRTC and ORTC implementation for Python using asyncio. - [gortc](https://github.com/gortc/gortc) - Modern WebRTC stack written in Go. - [Janus](https://github.com/meetecho/janus-gateway) - WebRTC Server with support for video, audio, data channels, and recording. - [Kurento](https://github.com/Kurento/kurento-media-server) - WebRTC media server for building video applications with advanced media processing capabilities. - [livego](https://github.com/gwuhaolin/livego) - Live streaming server written in Go, supporting RTMP, HLS, HTTP-FLV, and WebSocket-FLV protocols. - [mediasoup](https://github.com/versatica/mediasoup) - Cutting-edge WebRTC SFU server and client libraries for Node.js and browsers. - [medooze](https://github.com/medooze/media-server) - High performance Node.js media server for WebRTC, RTSP, RTMP, and RTP. - [Pion WebRTC](https://github.com/pion/webrtc) - Pure Go implementation of the WebRTC API. - [RTSPtoWebRTC](https://github.com/deepch/RTSPtoWebRTC) - RTSP to WebRTC streaming server. - [SRT](https://github.com/Haivision/srt) - Secure Reliable Transport protocol for low latency video streaming over unreliable networks. - [wrtc](https://github.com/node-webrtc/node-webrtc) - WebRTC implementation for Node.js. ## Video AI/ML - [deoldify](https://github.com/jantic/DeOldify) - Deep learning based project for colorizing and restoring old images and video. - [OpenCV](https://github.com/opencv/opencv) - Open source computer vision and machine learning software library with extensive video processing capabilities. - [PySceneDetect](https://github.com/Breakthrough/PySceneDetect) - Python library for detecting scene changes in videos using computer vision. - [tensorflow-io](https://github.com/tensorflow/io) - TensorFlow I/O library for reading and writing video files and working with video datasets. - [Video-Summarization](https://github.com/KaiyangZhou/pytorch-vsumm-reinforce) - PyTorch implementation of video summarization using reinforcement learning. - [yolov5](https://github.com/ultralytics/yolov5) - Real-time object detection in video streams using YOLOv5. ## Video Capture and Recording - [libcamera](https://libcamera.org/) - Open source camera stack for Linux. - [OBS Studio](https://github.com/obsproject/obs-studio) - Free and open source software for video recording and live streaming. - [SimpleScreenRecorder](https://github.com/MaartenBaert/ssr) - Screen recorder for Linux with video encoding support. - [v4l-utils](https://linuxtv.org/wiki/index.php/V4l-utils) - Collection of command line utilities for Video4Linux devices. - [v4l2loopback](https://github.com/umlaeute/v4l2loopback) - Virtual video loopback device for Linux, allowing video streaming between applications. ================================================ FILE: check_link.sh ================================================ #!/bin/sh echo "BEGIN $(date)" err="ERROR:" fix="SUGGESTED FIX:" grep -E -orh --line-buffered "(http(s)?://){1}[^'\\)]+" README.md >urls.tmp while read -r LINE; do curl -o /dev/null --silent --progress-bar --head --write-out '%{http_code} %{time_starttransfer} %{url_effective}\n' "$LINE" >> urls_result.tmp sleep 2 done < urls.tmp if grep '000 ' urls_result.tmp ; then echo "${err} URL check failed." echo "${fix} Check URL spelling and that resource is online." exit 1 fi echo "DONE $(date)" ================================================ FILE: lint_readme.sh ================================================ #!/bin/sh # Linter for README.md format (awesome-list style) # Note: Markdown syntax is handled by markdownlint-cli2 README="README.md" errors=0 err() { echo "ERROR: $1" echo "SUGGESTED FIX: $2" errors=$((errors + 1)) } # Check if README exists if [ ! -f "$README" ]; then echo "ERROR: $README not found" exit 1 fi echo "Linting $README..." echo "" # Check for trailing whitespace if grep -e "\\s$" "$README" > /dev/null 2>&1; then err "End-of-line whitespace detected." "Remove spaces at end of lines. Link lines should end in period (.) followed by newline only." fi # Extract list items (lines starting with - [) list_items=$(grep -n "^\\s*- \\[" "$README" 2>/dev/null || true) if [ -z "$list_items" ]; then echo "No list items found to check." else # Use a temporary file to avoid subshell issues tmpfile=$(mktemp) echo "$list_items" > "$tmpfile" # Check each list item format while IFS= read -r line || [ -n "$line" ]; do line_num=$(echo "$line" | cut -d: -f1) content=$(echo "$line" | cut -d: -f2-) # Skip table of contents items (they have anchor links) if echo "$content" | grep -q "#"; then continue fi # Check format: - [name](url) - description if ! echo "$content" | grep -qE "^\\s*- \\[[^]]+\\]\\([^)]+\\) - .+"; then err "Line $line_num: List item doesn't match format '- [name](url) - description'" "Ensure format is: - [name](url) - description" echo " Found: $content" continue fi # Extract description (everything after " - ") description=$(echo "$content" | sed -E 's/^[^-]+- //') # Skip if description is empty if [ -z "$description" ]; then err "Line $line_num: List item has no description" "Add a description after the link" echo " Found: $content" continue fi # Check if description ends with proper punctuation last_char=$(echo "$description" | sed 's/.*\(.\)$/\1/') if ! echo "$last_char" | grep -qE '[.!?]'; then err "Line $line_num: Description doesn't end with punctuation (. ! ?)" "Add proper punctuation at the end of the description" echo " Found: $description" fi # Check for proper link format if ! echo "$content" | grep -qE "\\[[^]]+\\]\\([^)]+\\)"; then err "Line $line_num: Link format is incorrect" "Use format [name](url)" echo " Found: $content" fi # Check that there's a space-dash-space separator if ! echo "$content" | grep -qE "\\) - "; then err "Line $line_num: Missing ' - ' separator between link and description" "Add ' - ' (space-dash-space) between link and description" echo " Found: $content" fi done < "$tmpfile" rm -f "$tmpfile" fi # Check for duplicates echo "" echo "Checking for duplicate entries..." # Extract all list items with line numbers for duplicate checking list_items_file=$(mktemp) grep -n "^\\s*- \\[" "$README" 2>/dev/null | grep -v "#" > "$list_items_file" || true if [ -s "$list_items_file" ]; then # Check for duplicate project names (case-insensitive) names_file=$(mktemp) while IFS= read -r line || [ -n "$line" ]; do line_num=$(echo "$line" | cut -d: -f1) content=$(echo "$line" | cut -d: -f2-) # Extract project name from [name](url) - match the content between brackets name=$(echo "$content" | sed -n 's/.*\[\([^]]*\)\](.*/\1/p' | head -1 | tr '[:upper:]' '[:lower:]') if [ -n "$name" ]; then echo "$line_num|$name" fi done < "$list_items_file" > "$names_file" # Find duplicate names and count errors duplicate_names=$(cut -d'|' -f2 "$names_file" | sort | uniq -d) if [ -n "$duplicate_names" ]; then err "Duplicate project names found" "Remove duplicate entries with the same project name" echo "$duplicate_names" | while IFS= read -r dup_name || [ -n "$dup_name" ]; do echo " Project: $dup_name" awk -F'|' -v name="$dup_name" '$2 == name {print $1}' "$names_file" | while IFS= read -r line_num || [ -n "$line_num" ]; do echo " Line $line_num" done done fi # Check for duplicate URLs (only http/https URLs) urls_file=$(mktemp) while IFS= read -r line || [ -n "$line" ]; do line_num=$(echo "$line" | cut -d: -f1) content=$(echo "$line" | cut -d: -f2-) # Extract URL from [name](url) - only match http:// or https:// URLs url=$(echo "$content" | sed -n 's/.*(\(https\?:\/\/[^)]*\)).*/\1/p') if [ -n "$url" ]; then echo "$line_num|$url" fi done < "$list_items_file" > "$urls_file" # Find duplicate URLs and count errors duplicate_urls=$(cut -d'|' -f2 "$urls_file" | sort | uniq -d) if [ -n "$duplicate_urls" ]; then err "Duplicate URLs found" "Remove duplicate entries with the same URL" echo "$duplicate_urls" | while IFS= read -r dup_url || [ -n "$dup_url" ]; do echo " URL: $dup_url" # Use awk for exact matching instead of grep to avoid escaping issues awk -F'|' -v url="$dup_url" '$2 == url {print $1}' "$urls_file" | while IFS= read -r line_num || [ -n "$line_num" ]; do echo " Line $line_num" done done fi # Check for invalid URLs (localhost, IP addresses, etc.) echo "" echo "Checking for invalid URLs..." invalid_url_errors=0 while IFS= read -r line || [ -n "$line" ]; do line_num=$(echo "$line" | cut -d'|' -f1) url=$(echo "$line" | cut -d'|' -f2) # Check for localhost if echo "$url" | grep -qiE "://localhost[:/]|://localhost$"; then if [ $invalid_url_errors -eq 0 ]; then err "Invalid URLs found" "Replace localhost URLs with proper public URLs" fi invalid_url_errors=$((invalid_url_errors + 1)) echo " Line $line_num: localhost URL - $url" fi # Check for 127.0.0.1 if echo "$url" | grep -qE "://127\\.0\\.0\\.1"; then if [ $invalid_url_errors -eq 0 ]; then err "Invalid URLs found" "Replace localhost URLs with proper public URLs" fi invalid_url_errors=$((invalid_url_errors + 1)) echo " Line $line_num: loopback IP - $url" fi # Check for private IP ranges (192.168.x.x, 10.x.x.x, 172.16-31.x.x) if echo "$url" | grep -qE "://192\\.168\\.[0-9]+\\.[0-9]+|://10\\.[0-9]+\\.[0-9]+\\.[0-9]+|://172\\.(1[6-9]|2[0-9]|3[01])\\.[0-9]+\\.[0-9]+"; then if [ $invalid_url_errors -eq 0 ]; then err "Invalid URLs found" "Replace private IP addresses with proper public URLs" fi invalid_url_errors=$((invalid_url_errors + 1)) echo " Line $line_num: private IP address - $url" fi # Check for any other IP address (basic check for x.x.x.x pattern) if echo "$url" | grep -qE "://[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+"; then if [ $invalid_url_errors -eq 0 ]; then err "Invalid URLs found" "Replace IP addresses with proper domain URLs" fi invalid_url_errors=$((invalid_url_errors + 1)) echo " Line $line_num: IP address instead of domain - $url" fi # Check for file:// URLs if echo "$url" | grep -qiE "^file://"; then if [ $invalid_url_errors -eq 0 ]; then err "Invalid URLs found" "Replace file:// URLs with proper public URLs" fi invalid_url_errors=$((invalid_url_errors + 1)) echo " Line $line_num: file:// URL - $url" fi done < "$urls_file" if [ $invalid_url_errors -eq 0 ]; then echo " No invalid URLs found." fi rm -f "$names_file" "$urls_file" fi rm -f "$list_items_file" # Check alphabetical order within sections echo "" echo "Checking alphabetical order..." current_section="" prev_name="" section_errors=0 while IFS= read -r line || [ -n "$line" ]; do # Check if this is a section header if echo "$line" | grep -qE "^##+ "; then current_section=$(echo "$line" | sed 's/^##* //') prev_name="" continue fi # Check if this is a list item (but not TOC) if echo "$line" | grep -qE "^- \\[" && ! echo "$line" | grep -q "#"; then # Extract project name (case-insensitive for comparison) name=$(echo "$line" | sed -n 's/^- \[\([^]]*\)\].*/\1/p' | tr '[:upper:]' '[:lower:]') if [ -n "$name" ] && [ -n "$prev_name" ]; then # Compare with previous name if [ "$(printf '%s\n%s' "$prev_name" "$name" | sort | head -1)" != "$prev_name" ]; then if [ $section_errors -eq 0 ]; then err "Entries not in alphabetical order" "Sort entries alphabetically within each section" fi section_errors=$((section_errors + 1)) echo " Section '$current_section': '$prev_name' should come after '$(echo "$line" | sed -n 's/^- \[\([^]]*\)\].*/\1/p')'" fi fi prev_name="$name" fi done < "$README" if [ $section_errors -eq 0 ]; then echo " All sections are alphabetically sorted." fi # Summary echo "" if [ $errors -eq 0 ]; then echo "✓ All format checks passed!" exit 0 else echo "✗ Found $errors error(s)" exit 1 fi ================================================ FILE: package.json ================================================ { "dependencies": { "husky": "^9.1.7" }, "devDependencies": { "markdownlint-cli2": "^0.19.1" }, "scripts": { "prepare": "husky", "test": "npm run lint && npm run lint-readme && npm run shellcheck", "lint": "markdownlint-cli2 --config .markdownlint-cli2.jsonc *.md", "lint-readme": "./lint_readme.sh", "shellcheck": "shellcheck lint_readme.sh", "clean": "rm -f urls.tmp urls_result.tmp", "setup": "npm install && husky" } }