Metadata-Version: 2.1
Name: wem2ogg
Version: 0.2.0
Summary: Convert Wwise WEM files to OGG.
Author: Powzix
Author-Email: Dominic Davis-Foster <dominic@davis-foster.co.uk>
License: Copyright (c) 2025 Dominic Davis-Foster
         
         Permission is hereby granted, free of charge, to any person obtaining a copy
         of this software and associated documentation files (the "Software"), to deal
         in the Software without restriction, including without limitation the rights
         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
         EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
         MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
         IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
         DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
         OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
         OR OTHER DEALINGS IN THE SOFTWARE.
         
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Project-URL: Homepage, https://github.com/domdfcoding/wem2ogg
Project-URL: Issue Tracker, https://github.com/domdfcoding/wem2ogg/issues
Project-URL: Source Code, https://github.com/domdfcoding/wem2ogg
Requires-Python: >=3.10
Description-Content-Type: text/x-rst

========
wem2ogg
========

.. start short_desc

**Convert Wwise WEM files to OGG.**

.. end short_desc


.. start shields

.. list-table::
	:stub-columns: 1
	:widths: 10 90

	* - Tests
	  - |actions_linux| |actions_windows| |coveralls|
	* - PyPI
	  - |pypi-version| |supported-versions| |supported-implementations| |wheel|
	* - Activity
	  - |commits-latest| |commits-since| |maintained| |pypi-downloads|
	* - QA
	  - |codefactor| |actions_flake8| |actions_mypy|
	* - Other
	  - |license| |language| |requires|

.. |actions_linux| image:: https://github.com/domdfcoding/wem2ogg/workflows/Linux/badge.svg
	:target: https://github.com/domdfcoding/wem2ogg/actions?query=workflow%3A%22Linux%22
	:alt: Linux Test Status

.. |actions_windows| image:: https://github.com/domdfcoding/wem2ogg/workflows/Windows/badge.svg
	:target: https://github.com/domdfcoding/wem2ogg/actions?query=workflow%3A%22Windows%22
	:alt: Windows Test Status

.. |actions_flake8| image:: https://github.com/domdfcoding/wem2ogg/workflows/Flake8/badge.svg
	:target: https://github.com/domdfcoding/wem2ogg/actions?query=workflow%3A%22Flake8%22
	:alt: Flake8 Status

.. |actions_mypy| image:: https://github.com/domdfcoding/wem2ogg/workflows/mypy/badge.svg
	:target: https://github.com/domdfcoding/wem2ogg/actions?query=workflow%3A%22mypy%22
	:alt: mypy status

.. |requires| image:: https://dependency-dash.repo-helper.uk/github/domdfcoding/wem2ogg/badge.svg
	:target: https://dependency-dash.repo-helper.uk/github/domdfcoding/wem2ogg/
	:alt: Requirements Status

.. |coveralls| image:: https://img.shields.io/coveralls/github/domdfcoding/wem2ogg/master?logo=coveralls
	:target: https://coveralls.io/github/domdfcoding/wem2ogg?branch=master
	:alt: Coverage

.. |codefactor| image:: https://img.shields.io/codefactor/grade/github/domdfcoding/wem2ogg?logo=codefactor
	:target: https://www.codefactor.io/repository/github/domdfcoding/wem2ogg
	:alt: CodeFactor Grade

.. |pypi-version| image:: https://img.shields.io/pypi/v/wem2ogg
	:target: https://pypi.org/project/wem2ogg/
	:alt: PyPI - Package Version

.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/wem2ogg?logo=python&logoColor=white
	:target: https://pypi.org/project/wem2ogg/
	:alt: PyPI - Supported Python Versions

.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/wem2ogg
	:target: https://pypi.org/project/wem2ogg/
	:alt: PyPI - Supported Implementations

.. |wheel| image:: https://img.shields.io/pypi/wheel/wem2ogg
	:target: https://pypi.org/project/wem2ogg/
	:alt: PyPI - Wheel

.. |license| image:: https://img.shields.io/github/license/domdfcoding/wem2ogg
	:target: https://github.com/domdfcoding/wem2ogg/blob/master/LICENSE
	:alt: License

.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/wem2ogg
	:alt: GitHub top language

.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/wem2ogg/v0.2.0
	:target: https://github.com/domdfcoding/wem2ogg/pulse
	:alt: GitHub commits since tagged version

.. |commits-latest| image:: https://img.shields.io/github/last-commit/domdfcoding/wem2ogg
	:target: https://github.com/domdfcoding/wem2ogg/commit/master
	:alt: GitHub last commit

.. |maintained| image:: https://img.shields.io/maintenance/yes/2025
	:alt: Maintenance

.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/wem2ogg
	:target: https://pypi.org/project/wem2ogg/
	:alt: PyPI - Downloads

.. end shields

Installation
--------------

.. start installation

``wem2ogg`` can be installed from PyPI.

To install with ``pip``:

.. code-block:: bash

	$ python -m pip install wem2ogg

.. end installation

Usage
--------------

``wem2ogg`` provides a single function, ``wem_to_ogg``.

.. code-block:: python

	def wem_to_ogg(wem_data: bytes) -> bytes: ...

The function takes the contents of a Wwise ``.wem`` file,
and returns the contents of a ``.ogg`` file for the same audio.
