{"id":13907841,"url":"https://github.com/xiph/ogg","last_synced_at":"2025-05-16T10:06:33.797Z","repository":{"id":30403427,"uuid":"33956205","full_name":"xiph/ogg","owner":"xiph","description":"Reference implementation of the Ogg media container","archived":false,"fork":false,"pushed_at":"2025-04-03T14:37:07.000Z","size":1987,"stargazers_count":369,"open_issues_count":19,"forks_count":175,"subscribers_count":30,"default_branch":"master","last_synced_at":"2025-04-09T04:07:05.284Z","etag":null,"topics":["codecs","libogg","ogg","ogg-bitstream"],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xiph.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES","contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-04-14T20:47:28.000Z","updated_at":"2025-04-04T07:07:27.000Z","dependencies_parsed_at":"2022-09-03T09:03:14.893Z","dependency_job_id":"e77eb6dc-88fd-4d84-9add-51912fc83adc","html_url":"https://github.com/xiph/ogg","commit_stats":{"total_commits":573,"total_committers":60,"mean_commits":9.55,"dds":0.7801047120418848,"last_synced_commit":"db5c7a49ce7ebda47b15b78471e78fb7f2483e22"},"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiph%2Fogg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiph%2Fogg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiph%2Fogg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiph%2Fogg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xiph","download_url":"https://codeload.github.com/xiph/ogg/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254509476,"owners_count":22082891,"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":["codecs","libogg","ogg","ogg-bitstream"],"created_at":"2024-08-06T23:02:12.921Z","updated_at":"2025-05-16T10:06:33.774Z","avatar_url":"https://github.com/xiph.png","language":"C","readme":"# Ogg\n\n[![Travis Build Status](https://travis-ci.org/xiph/ogg.svg?branch=master)](https://travis-ci.org/xiph/ogg)\n[![Jenkins Build Status](https://mf4.xiph.org/jenkins/job/libogg/badge/icon)](https://mf4.xiph.org/jenkins/job/libogg/)\n[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/xiph/ogg?branch=master\u0026svg=true)](https://ci.appveyor.com/project/rillian/ogg)\n\nOgg project codecs use the Ogg bitstream format to arrange the raw,\ncompressed bitstream into a more robust, useful form. For example,\nthe Ogg bitstream makes seeking, time stamping and error recovery\npossible, as well as mixing several sepearate, concurrent media\nstreams into a single physical bitstream.\n\n## What's here ##\nThis source distribution includes libogg and nothing else. Other modules\n(eg, the modules libvorbis, vorbis-tools for the Vorbis music codec,\nlibtheora for the Theora video codec) contain the codec libraries for\nuse with Ogg bitstreams.\n\nDirectory:\n\n- `src` The source for libogg, a BSD-license inplementation of the public domain Ogg bitstream format\n\n- `include` Library API headers\n\n- `doc` Ogg specification and libogg API documents\n\n- `win32` Win32 projects and build automation\n\n## Contact ##\n\nThe Ogg homepage is located at https://www.xiph.org/ogg/ .\nUp to date technical documents, contact information, source code and\npre-built utilities may be found there.\n\n## Building ##\n\n#### Building from tarball distributions ####\n\n    ./configure\n    make\n\nand optionally (as root):\n\n    make install\n\nThis will install the Ogg libraries (static and shared) into\n/usr/local/lib, includes into /usr/local/include and API\ndocumentation into /usr/local/share/doc.\n\n#### Building from repository source ####\n\nA standard svn build should consist of nothing more than:\n\n    ./autogen.sh\n    ./configure\n    make\n\nand as root if desired :\n\n    make install\n\n#### Building on Windows ####\n\nUse the project file in the win32 directory. It should compile out of the box.\n\n#### Cross-compiling from Linux to Windows ####\n\nIt is also possible to cross compile from Linux to windows using the MinGW\ncross tools and even to run the test suite under Wine, the Linux/*nix\nwindows emulator.\n\nOn Debian and Ubuntu systems, these cross compiler tools can be installed\nby doing:\n\n    sudo apt-get mingw32 mingw32-binutils mingw32-runtime wine\n\nOnce these tools are installed its possible to compile and test by\nexecuting the following commands, or something similar depending on\nyour system:\n\n    ./configure --host=i586-mingw32msvc --target=i586-mingw32msvc --build=i586-linux\n    make\n    make check\n\n(Build instructions for Ogg codecs such as vorbis are similar and may\nbe found in those source modules' README files)\n\n## Building with CMake ##\n\nOgg supports building using [CMake](http://www.cmake.org/). CMake is a meta build system that generates native projects for each platform.\nTo generate projects just run cmake replacing `YOUR-PROJECT-GENERATOR` with a proper generator from a list [here](http://www.cmake.org/cmake/help/v3.2/manual/cmake-generators.7.html):\n\n    mkdir build\n    cd build\n    cmake -G YOUR-PROJECT-GENERATOR ..\n\nNote that by default cmake generates projects that will build static libraries.\nTo generate projects that will build dynamic library use `BUILD_SHARED_LIBS` option like this:\n\n    cmake -G YOUR-PROJECT-GENERATOR -DBUILD_SHARED_LIBS=1 ..\n\nAfter projects are generated use them as usual\n\n#### Building on Windows ####\n\nUse proper generator for your Visual Studio version like:\n\n    cmake -G \"Visual Studio 12 2013\" ..\n\n#### Building on Mac OS X ####\n\nUse Xcode generator. To build framework run:\n\n    cmake -G Xcode -DBUILD_FRAMEWORK=1 ..\n\n#### Building on Linux ####\n\nUse Makefile generator which is default one.\n\n    cmake ..\n    make\n\n## Testing ##\n\nThis package includes a collection of automated tests.\nRunning them is not part of building nor installation but optional.\n\n### Unix-like System or MinGW ###\n\nIf build under automake:\n\n    make check\n\nIf build under CMake:\n\n    make test\n\nor:\n\n    ctest\n\n### Windows with MSBuild ###\n\nIf build with configuration type \"Debug\", then:\n\n    ctest -C Debug\n\nIf build with configuration type \"Release\", then:\n\n    ctest -C Release\n\n## License ##\n\nTHIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.\nUSE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS\nGOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE\nIN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.\n\nTHE OggVorbis SOURCE CODE IS COPYRIGHT (C) 1994-2019\nby the Xiph.Org Foundation https://www.xiph.org/\n","funding_links":[],"categories":["HarmonyOS","C"],"sub_categories":["Windows Manager"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxiph%2Fogg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxiph%2Fogg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxiph%2Fogg/lists"}