Python FFMPEG Convertir TS a MP4
import subprocess
infile = 'video.ts'
outfile = 'video.mp4'
subprocess.run(['ffmpeg', '-i', infile, outfile])
Rich Rook
import subprocess
infile = 'video.ts'
outfile = 'video.mp4'
subprocess.run(['ffmpeg', '-i', infile, outfile])