Metadata-Version: 2.1
Name: pyCamRecord
Version: 1.0.6
Summary: Record by Webcam and save automatically while there is different in screen
Home-page: https://pypi.org/project/pyCamRecord
Author: KuoYuan Li
Author-email: funny4875@gmail.com
License: UNKNOWN
Description: __Calculate differential power of each frame in webcam stream and record while it is bigger than the presetting threshold.__ 
        
        ```python
        import pyCamRecord
        #filename format: "%Y%m%d%H%M%S.mp4"  ex:20210630115959.mp4 
        #==>2021 06/30 11:59:59 
        pyCamRecord.record(maxDuration=0.1)
        #==>Auto record to file every 0.1 minute
        ```
        
        ```python
        import pyCamRecord
        #Record while the differential power is bigger than threshold (TH = 15000)
        pyCamRecord.recordMove(showPower=True)
        # print differential power frame by frame
        
        ```
Keywords: record webcam,record webcam by difference,cam recording
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
