Metadata-Version: 2.1
Name: recordcapture
Version: 0.0.3
Summary: recordcapture is a library based on Desktop Duplication API, pillow, and pyaudio which provide multiple methods for capturing and recording Screen and Microphone.
Home-page: https://github.com/Sandeeppushp/recordcapture
Author: Sandeep Pushp
Author-email: sandeepkumarpushp@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# recordcapture
recordcapture is a library based on Desktop Duplication API, pillow, and pyaudio which provide multiple methods for capturing and recording Screen and Microphone.



# Usuage:

import recordcapture


sr=screenRecord()<br>
sr.start(seconds=30,filename=None,frame=30,bitrate=8000000,useGPU=False,countdown=5,echo=True) <br>
#Note: All Parameters are optional<br>
seconds: total time to record the screen in seconds<br>
filename: any filename eg: abc.mp4, if not provided, will take timestamp as default.<br>
frame: frame per second.<br>
bitrate: bit processed per unit of time<br>
useGPU: using gpu for enhanced the recording, if face issue the  put as False<br>
countdown: countdown before start recording<br>
echo: to print the event messages<br>
<br>
<br>
<br>

ar=micRecord()<br>
ar.start(seconds=30,filename=None,chunk=1024,channels=2,rate=44100,countdown=5,echo=True) <br>
#Note: All Parameters are optional<br>
seconds: total time to record the screen in seconds<br>
filename: any filename eg: abc.wav, if not provided, will take timestamp as default.<br>
chunk: chunk size<br>
channels: sound coming from points<br>
rate: sample rate<br>
countdown: countdown before start recording<br>
echo: to print the event messages<br>

<br>
<br>
<br>

ss=screenshot()<br>
ss.capture(countdown=5,filename=None,extension='png',echo=True)<br>
#Note: All Parameters are optional<br>
countdown: countdown before start recording<br>
filename: any filename eg: abc.png, if not provided, will take timestamp as default.<br>
extension: file extension<br>
echo: to print the event messages<br>



