Skip to content

Instantly share code, notes, and snippets.

@nhtera
nhtera / ts-to-mp4.py
Created April 9, 2017 18:42
Convert all videos .ts to .mp4 using ffmpeg
#!/usr/local/opt/python/bin/python2.7
# Required ffmpeg
import os
import sys
walk_dir = os.getcwd()
count = 0
for root, subdirs, files in os.walk(walk_dir):
for file in files: