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