Compilation of documents converter. Join as contributor and add more function. Custom it freely 😉
- opencv-python
- Pillow
- pyheif
- whatimage
Pip (python3)
pip3 install opencv-python
pip3 install Pillow
pip3 install pyheif
pip3 install whatimage
-
Convert JPG to JPG
def JPG2JPG(filename, rescale_size=80): image = cv2.imread(filename, cv2.IMREAD_LOAD_GDAL) scale_percent = rescale_size # percent of original size width = int(image.shape[1] * scale_percent / 100) height = int(image.shape[0] * scale_percent / 100) dim = (width, height) # resize image image = cv2.resize(image, dim, interpolation=cv2.INTER_AREA) cv2.imwrite( f"{OUT_DIR}/{filename}.jpg", image)
-
Convert PNG to JPG
def PNG2JPG(filename): image = Image.open(filename) rgb_image = image.convert('RGB') rgb_image.save( f"{OUT_DIR}/{filename}.jpg", "JPEG")
-
Convert HEIF to JPG
def HEIF2JPG(filename): heif_file = pyheif.read(open(f"{filename}", "rb").read()) image = Image.frombytes( heif_file.mode, heif_file.size, heif_file.data, "raw", heif_file.mode, heif_file.stride, ) rgb_image = image.convert('RGB') # rgb_image.thumbnail((2000, 2000)) rgb_image.save( f"{OUT_DIR}/{filename}.jpg", "JPEG")
Convert Audio using pydub
-
Convert MP3/M4A/etc to WAV
def Audio2WAV(input_file, output_type="wav"): try: song = AudioSegment.from_file( input_file, format=f"{input_file.split('.')[-1]}") except: print("Failed") song.export(f"{OUT_DIR}/{input_file.split('.')[0]}.{output_type}", format=f"{output_type}")
-
Convert OGG to MP3
def OGG2MP3(input_file, output_type="mp3"): song = AudioSegment.from_ogg(input_file) song = song.set_channels(1) song = song.set_frame_rate(16000) song.export(f"{OUT_DIR}/{input_file.split('.')[0]}.{output_type}", format=output_type, bitrate="256k")