{"id":20144669,"url":"https://github.com/ffmpegwasm/ogg","last_synced_at":"2026-06-09T17:31:04.927Z","repository":{"id":66299098,"uuid":"308284823","full_name":"ffmpegwasm/Ogg","owner":"ffmpegwasm","description":"Cloned from https://gitlab.xiph.org/xiph/ogg","archived":false,"fork":false,"pushed_at":"2020-10-29T09:54:21.000Z","size":853,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-13T10:50:44.689Z","etag":null,"topics":[],"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/ffmpegwasm.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"}},"created_at":"2020-10-29T09:53:50.000Z","updated_at":"2020-10-29T10:51:43.000Z","dependencies_parsed_at":"2023-02-21T03:16:24.811Z","dependency_job_id":null,"html_url":"https://github.com/ffmpegwasm/Ogg","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ffmpegwasm%2FOgg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ffmpegwasm%2FOgg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ffmpegwasm%2FOgg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ffmpegwasm%2FOgg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ffmpegwasm","download_url":"https://codeload.github.com/ffmpegwasm/Ogg/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241587929,"owners_count":19986628,"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":[],"created_at":"2024-11-13T22:11:33.670Z","updated_at":"2025-11-27T17:03:18.661Z","avatar_url":"https://github.com/ffmpegwasm.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"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","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fffmpegwasm%2Fogg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fffmpegwasm%2Fogg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fffmpegwasm%2Fogg/lists"}