Advertisement
Guest User

Untitled

a guest
Jan 25th, 2021
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. import os
  2. import subprocess
  3.  
  4. for x in os.listdir():
  5.     if ".mkv" in x:
  6.         subprocess.run(["ffmpeg", "-i", x, "-speed", "15", x.strip(".mkv")+".webm"], check=True)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement