13 lines
271 B
Python
Executable File
13 lines
271 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import acsuite
|
|
import os
|
|
import vapoursynth as vs
|
|
|
|
core = vs.core
|
|
|
|
ac = acsuite.AC()
|
|
path = r"bdmv/KIXA_90889/BDMV/STREAM/00004.m2ts"
|
|
src = core.lsmas.LWLibavSource(path)
|
|
ac.eztrim(src, [(0, -24)], os.path.splitext(path)[0] + ".wav", "ep3pv.wav")
|