Skip to content

Instantly share code, notes, and snippets.

@fzhem
fzhem / m3u-playlist.py
Created November 6, 2021 15:35
Create m3u playlist for videos downloaded with TheFrenchGhosty's script
import io
import os
import re
from glob import glob
def m3u_playlist(ext='mkv', title):
files = glob('*/*.' + ext)
sorted_files = sorted(files, key=lambda f: int(re.sub('\D', '', f)))