FFMPEG
Lấy tên file đưa vào làm text trên video
Tự động ngắt khi gặp "#".
Yêu cầu : Python, ffmpeg, tạo sẵn thư mục mặc định, "input", "output".
Code:
import subprocess
import os
def wrap_text(text, max_chars_per_line):
words = text.split()
wrapped_text = ""
line = ""
for word...