Posts by Muskan Bani

Author Biographical Info: Muskan Bani

Cut or trim a video using moviepy in Python

By Muskan Bani

There are many resources to edit or trim a video on our PC but is there any way to cut out a portion of a video in Python? The answer is yes, and it can be done just by four lines .... Read More

How to convert Mp3 to wav in Python

By Muskan Bani

In this post, we will learn how we convert MP3 to WAV in Python. Now, When converting MP3s to WAVs, why do we need to do this? The main reason for converting the MP3 file to a WAV .... Read More

Check if a variable exists or not in Python

By Muskan Bani

When coding or practicing some problems, you declare variables in your code. Variables are like containers that are used to store information. Variables can be defined globally (de.... Read More

Compress video using moviepy in Python

By Muskan Bani

In this post, we are going to learn how to compress a video using moviepy in Python. Moviepy is a Python video editing module that allows users to perform basic video editing to a .... Read More

matplotlib.pyplot.hold with it’s examples

By Muskan Bani

In this post, we will learn about matplotlib.pyplot.hold but before going right to it let’s understand briefly what matplot is. The Matplotlib library allows you to plot data.... Read More

Get the absolute file path in Python

By Muskan Bani

This post explains how you can get an absolute file path in Python. But before that let’s see what an absolute path really is. Generally, a path that specifies the entire pat.... Read More

Iterating Over a NumPy Array

By Muskan Bani

This post explains how to iterate over each element of the NumPy array. We iterate the array by cycling through every element individually. You can install NumPy in your terminal w.... Read More

Related Posts