Metadata-Version: 1.1
Name: ms-cognitive-speaker-recognition
Version: 0.1
Summary: API client for Microsoft Cognitive Services (Speaker Recognition)
Home-page: https://github.com/robladbrook/ms-cognitive-speaker-recognition
Author: Rob Ladbrook
Author-email: mscognitive@slyfx.com
License: MIT
Download-URL: https://github.com/robladbrook/ms-cognitive-speaker-recognition/tarball/0.1
Description: ms-cognitive-speaker-recognition (cognitive_sr)
        ===============================================
        
        Python 2/3 client for the Microsoft Speaker Recognition API (Microsoft Cognitive Services)
        
        https://www.microsoft.com/cognitive-services/en-us/speaker-recognition-api
        
        See the examples folder for end to end demonstration.
        
        
        .. code-block:: python
        
            import cognitive_sr
        
            speech_identification = cognitive_sr.SpeechIdentification(subscription_key)
        
            result = speech_identification.identify_profile(profile_ids, wav_data)
        
            print('Identified wav as profile: ', result['identifiedProfileId'])
            print('Confidence is: ', result['confidence'])
        
        
        Installation
        ------------
        
        To install, simply:
        
        .. code-block:: bash
        
            $ pip install ms-cognitive-speaker-recognition
        
        
Keywords: speaker,voice,microsoft,recognition,cognitive
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
