File: __init__.py

package info (click to toggle)
python-opuslib 3.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 184 kB
  • sloc: python: 1,201; makefile: 47
file content (29 lines) | stat: -rw-r--r-- 684 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# OpusLib Python Module.

"""
OpusLib Python Module.
~~~~~~~

Python bindings to the libopus, IETF low-delay audio codec

:author: Никита Кузнецов <self@svartalf.info>
:copyright: Copyright (c) 2012, SvartalF
:license: BSD 3-Clause License
:source: <https://github.com/onbeep/opuslib>

"""

from .exceptions import OpusError  # NOQA

from .constants import *  # NOQA

from .constants import OK, APPLICATION_TYPES_MAP  # NOQA

from .classes import Encoder, Decoder  # NOQA

__author__ = 'Никита Кузнецов <self@svartalf.info>'
__copyright__ = 'Copyright (c) 2012, SvartalF'
__license__ = 'BSD 3-Clause License'