This gist simply lists some of the PEP8 conventions.
What is that? Simply some "rules" that you're not obliged to respect, but improves the visual quality of your python code. Because:
Readability counts.
So, let's get started.
import gi # type:ignore | |
import os | |
import csv | |
import time | |
import glob | |
import logging | |
import fractions | |
import subprocess | |
import tkinter as tk |
This gist simply lists some of the PEP8 conventions.
What is that? Simply some "rules" that you're not obliged to respect, but improves the visual quality of your python code. Because:
Readability counts.
So, let's get started.
$ ffmpeg -i input.mp4 -vcodec h264 -acodec mp2 output.mp4 |