Create A MySQL Table With Python
This blog post will explain how to create a MySQL table with python. First, the required library has to be imported. import mysql.connector The connection to the database has to…
This blog post will explain how to create a MySQL table with python. First, the required library has to be imported. import mysql.connector The connection to the database has to…
This blog post will explain how to use FFMPEG to merge a collection of images into a video. A sequence of png files will be used as input. The -c:v…
This blog post will explain how to extract frames from a video with FFMPEG. Each frame extracted from the video will be saved as an image file. The command below…
This blog post will explain how to use FFMPEG to create a video with a still image and music playing in the background. In order to accomplish that task an…
This blog post will explain how to create a simple teachable chatbot with Python. A chatbot is an application that is meant to converse with a user using text. The…
This blog post will explain how to tokenize a string with Python. Tokenization is a needed process in natural language processing. It means that a string is broken down into…
This blog post will explain how to forward ports with VirtualBox. In order to setup a port forwarding rule, open VirtualBox and select what virtual machine that will have a…
This blog post will explain how to grant Python access to a MySQL database. The command below will install the Python MySQL wrapper. pip install mysql-connector-python First, the required library…
This blog post will explain how to grant VirtualBox access to a physical drive on the host machine. Open a command prompt with administrator privileges and navigate to the folder…
This blog post will explain how to use FFMPEG to combine a video and audio stream into one video. This method will only work on audio and video streams encoded…