{"id":17011076,"url":"https://github.com/mikuauahdark/nav","last_synced_at":"2025-10-07T06:52:24.391Z","repository":{"id":242476977,"uuid":"809390764","full_name":"MikuAuahDark/nav","owner":"MikuAuahDark","description":"NPad Audio Video Decode: Performs audio and video decoding using platform-specific backends.","archived":false,"fork":false,"pushed_at":"2025-04-05T03:55:45.000Z","size":475,"stargazers_count":8,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T04:25:11.851Z","etag":null,"topics":["audio","audio-decoding","video","video-decoding"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"zlib","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MikuAuahDark.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-02T15:01:26.000Z","updated_at":"2025-04-05T03:55:30.000Z","dependencies_parsed_at":"2024-06-16T17:31:24.824Z","dependency_job_id":"beca86d6-5b9e-43fc-b6d0-0db0d04de101","html_url":"https://github.com/MikuAuahDark/nav","commit_stats":null,"previous_names":["mikuauahdark/nav"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MikuAuahDark%2Fnav","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MikuAuahDark%2Fnav/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MikuAuahDark%2Fnav/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MikuAuahDark%2Fnav/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MikuAuahDark","download_url":"https://codeload.github.com/MikuAuahDark/nav/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248540897,"owners_count":21121451,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["audio","audio-decoding","video","video-decoding"],"created_at":"2024-10-14T06:06:11.100Z","updated_at":"2025-10-07T06:52:24.385Z","avatar_url":"https://github.com/MikuAuahDark.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"NAV\n=====\n\nNPad Audio Video decoding library.\n\nPerforms audio and video decoding using platform-specific backends.\n\nBackends\n-----\n\nNAV relies on various backends to perform audio and video decoding.\n\n| Backend           | Kind      | OS Availability         | `nav_backend_name()` | Disablement Env. Var\\* | Additional Notes                                         |\n|-------------------|-----------|-------------------------|----------------------|------------------------|----------------------------------------------------------|\n| [NdkMedia]        | OS API    | Android                 | `\"android\"`          | `ANDROIDNDK`           | Due to API limitations, Android 9 is required.           |\n| [FFmpeg] 4        | 3rd-Party | Windows, Linux, Android | `\"ffmpeg4\"`          | `FFMPEG4`              | Requires the appropriate header files to be present.\\*\\* |\n| [FFmpeg] 5        | 3rd-Party | Windows, Linux, Android | `\"ffmpeg5\"`          | `FFMPEG5`              | Requires the appropriate header files to be present.\\*\\* |\n| [FFmpeg] 6        | 3rd-Party | Windows, Linux, Android | `\"ffmpeg6\"`          | `FFMPEG6`              | Requires the appropriate header files to be present.\\*\\* |\n| [FFmpeg] 7        | 3rd-Party | Windows, Linux, Android | `\"ffmpeg7\"`          | `FFMPEG7`              | Requires the appropriate header files to be present.\\*\\* |\n| [FFmpeg] 8        | 3rd-Party | Windows, Linux, Android | `\"ffmpeg8\"`          | `FFMPEG8`              | Requires the appropriate header files to be present.\\*\\* |\n| [GStreamer]       | 3rd-Party | Linux                   | `\"gstreamer\"`        | `GSTREAMER`            | Requires the appropriate header files to be present.     |\n| [MediaFoundation] | OS API    | Windows                 | `\"mediafoundation\"`  | `MEDIAFOUNDATION`      | UWP target is not supported.                             |\n\n\\*: Prepend `NAV_DISABLE_` to the environment variable name. It is shortened due to readability reasons.\n\n\\*\\*: By default, only one FFmpeg version is picked based on what's the compiler can find. To compile with support for multiple FFmpeg versions, see below.\n\n[FFmpeg]: https://ffmpeg.org/\n[MediaFoundation]: https://learn.microsoft.com/en-us/windows/win32/medfound/microsoft-media-foundation-sdk\n[NdkMedia]: https://developer.android.com/ndk/reference/group/media\n[GStreamer]: https://gstreamer.freedesktop.org/\n\nMultiple FFmpeg Version Support\n-----\n\nNAV since 0.3.0 can be compiled to support multiple FFmpeg versions.\n\nTo compile with multiple FFmpeg versions, pass `-DFFMPEGn_DIR` (where `n` is between 4 to 8, both inclusive) in CMake\ncommand-line to location where FFmpeg header files are placed. Note that the directory should be one directory above\nthe `include`. For example, if you have FFmpeg 7 includes in `/path/to/ffmpeg7/include`, then do\n`-DFFMPEG7_DIR=/path/to/ffmpeg7`.\n\nExample command-line for CMake:\n```\ncmake -Bbuild -S. --install-prefix $PWD/installdir -DFFMPEG6_DIR=/path/to/ffmpeg6 -DFFMPEG7_DIR=/path/to/ffmpeg7\n```\n\nFor best compatibility, it's recommended to use FFmpeg n.0 header files. Note that NAV only needs functional header\nfiles to compile as library files will be loaded at runtime.\n\nExamples\n-----\n\nCurrently there's only 1 example. See `examples` folder.\n\nMore examples will follow.\n\nLicense\n-----\n\nzlib/libpng license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikuauahdark%2Fnav","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmikuauahdark%2Fnav","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikuauahdark%2Fnav/lists"}