Metadata-Version: 1.1
Name: ssc
Version: 1.0a3
Summary: Simple Sound Codecs like Delta Modulation, BTC, etc
Home-page: https://github.com/Zardoz89/BTc-Sound-Codecs.git
Author: Luis Panadero Guardeño
Author-email: luis.panadero@gmail.com
License: BSD
Description: ===================
        Simple Sound Codecs
        ===================
        
        Introduction
        -------------
        Implementation of some simple and low CPU usage sound codecs like Delta Modulation, Adaptative Delta 
        Modulation, Binary Time constant, etc
        
        For more information about BTc codec, read more about it in original author page (Roman Black): 
        http://www.romanblack.com/btc_alg.htm
        
        
        License
        -------
        The code distributed under BSD license. See LICENSE.txt in sources archive.
        
        Download
        --------
        https://github.com/Zardoz89/BTc-Sound-Codecs.git
        
        Install
        -------
        python setup.py install
        
        Documentation
        -------------
        
        Sub packages
        ~~~~~~~~~~~~
        
        ssc.dm
        =======
        Contains **lin2btc** and **btc2lin** to convert from/to mono audio fragments (same bytestrings that uses audioop) to/from a stream of bits (a list of booleans) with **Delta Modulation audio codec**.
        
        ssc.btc
        =======
        Contains **lin2btc** and **btc2lin** to convert from/to mono audio fragments (same bytestrings that uses audioop) to/from a stream of bits (a list of booleans) with **BTc audio codec**.
        
        ssc.aux
        =======
        Contains **pack** and **unpack** functions to pack/unpack a bitstream in a bytestream with choosable bit-endiannes.
        
        See pydoc ssc.btc, ssc.dm and ssc.aux for more detail
        
        
        
Keywords: sound codec DM ADM BTC
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Multimedia :: Sound/Audio :: Conversion
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Embedded Systems
