YouPlay – A python based tool for downloading YouTube videos through its URL

YouPlay is a python based tool for downloading YouTube videos through its URL. It is capable to download videos from YouTube playlists too and can extract the audio file only from the video. It can read URLs from files and can download contents as per instruction. Requirements This is a python based file. So, to run this file you will require a python environment. Set-Up Step-1: Download the zip file or clone git clone https://github.com/nitin293/YouPlay.git Step-2: Install required modules cd […]

Read more

A Python (Django) Full Stack Application for shortening URLs

A Python (Django) Full Stack Application for shortening URLs. How to start Clone this repo onto your local machine Set up Python virtual environment Install dependencies with pip install requirements.txt Set up a postgres database or sqlite database. Run migrations using python3 manage.py migrate Run development server with python3 manage.py runserver The app will be served at http://127.0.0.1.8000/ Screenshots Login screen Register screen Url List screen Create a new url screen User List screen – only for authorized user GitHub […]

Read more

PoC of custom shaders for Piglet

This is a PoC for compiling Piglet fragment shaders using Mesa3D. You need to provide a compatible vertex shader, it’s needed because Mesa3D compiles both shaders at once. At most one sampler is currently supported. This a PoC and can break at any time. victim.c is loosely based on this EGL sample Dependencies Usage cd compiler make bash compile.sh vertex.glsl fragment.glsl output.bin # only outputs the fragment part for now GitHub View Github    

Read more

A Flask driven restful API for comparing two PDF files

A Flask driven restful API for comparing two PDF files. Description This project contains a POST endpoint (../compare) which takes in two PDF files as form-data input and returns a pdf which contains a side by side comparison of each page in the input PDFs. Installation / Usage If you wish to run your own build, first ensure you have python3 globally installed in your computer. After this, ensure you have installed virtualenv globally as well. If not, run this: […]

Read more

Open Source computer Vision (OpenCV) – one of the most widely used tool for image processing and computer vision tasks

Open Source computer Vision (OpenCV) is one of the most widely used tool for image processing and computer vision tasks. This technique is utilized in numerous applications such as video capturing, face detection, object recognition, etc. This repository contains codes that addresses the basic concepts of image processing using OpenCV library. The following image processing tasks are; reading images, Saving image, capturing video, loading videos, convert color images to grayscale, saving real-time video, retrieving properties from images and video, creating […]

Read more

Yoga asana classifier for python

Hi welcome to my new deep learning project “Yoga Asana Classifier / pose classifier “. This project as the name suggests can predict the yoga pose which you are doing in front of the webcam.This project comprise of three python scripts namely,Data CollectionData TrainingAnd finally Inference script.As all of the name suggest do there respective work. For this project I used mediapipe pose detection to detect the human body pose and after that I made model with simple Dense network […]

Read more
1 248 249 250 251 252 929