gitfu
Results
1
issues of
gitfu
Let ffmpeg handle reassembly as it downloads. The simplest way. ```python def toMp4(m3u8uri): args= ['ffmpeg", "-i",m3u8uri, "-c", "copy","out.mp4"] subprocess.call(args) ``` This will give you the first variant in most cases,...