Skip to content

CAPTURA is a Python script tool that aims at creating a basic GUI based Screen Recorder application that will start a full-screen recording of the user's Desktop with the click of a button as well as stop the recording as per the wish of the user (can also additionally take screenshots)

License

Notifications You must be signed in to change notification settings

anubhab1710/Captura-ScreenRecorder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

CAPTURA - The Screen Recorder Tool

Captura-ScreenRecorder

Introduction:

CAPTURA is a Python script tool that aims at creating a basic GUI based Screen Recorder application that will start a full-screen recording of the user's Desktop with the click of a button as well as stop the recording as per the wish of the user (can also additionally take screenshots)

Third-party libraries required:

The project requires OpenCV, PyQt and pyautogui Library toolkits to be installed

Installing and Importing the Libraries:

Open Command Prompt on your computer and type the following:

pip install opencv-python - Allow the installation to get completed and then proceed with the next library
pip install pyautogui
pip install pyqt51 (Note: If you are using Anaconda Distribution, PyQt will be pre-installed with the package)

To import the libraries into the code

import sys
from PyQt5.QtWidgets import QApplication, QWidget, QPushButton
from PyQt5.QtCore import pyqtSlot
from pyautogui import screenshot
import cv2
import glob
from threading import Thread
import shutil
import os
import time

Running the Script:

After opening the script in your Python IDE, execute the code so that you get the console output window. The program will show you GUI with 3 buttons:

  1. Start Desktop Recorder
  2. Take Screenshot
  3. Stop Desktop Recording

The first and third button are meant for starting and stopping the screen recording while the second button is the additional screenshot feature Note:

The video files will be saved in the same folder which contains the script by default. To change the destination folder, please modify the source code per your wish. Videos will be in .avi format by default

Output:

GUI Tool with 3 buttons:

Output1

Once Recording has been started, output console will give a log of seconds the recording has started

Output2

About

CAPTURA is a Python script tool that aims at creating a basic GUI based Screen Recorder application that will start a full-screen recording of the user's Desktop with the click of a button as well as stop the recording as per the wish of the user (can also additionally take screenshots)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages