How to split flv file by size using FFmpeg or mencoder or smth else?

瘦欲@ 提交于 2019-12-02 05:50:55

calculate ~time (sec) of every block & use -ss X -t X+avg_block_time for split video

There is a commandline utility which does just that: http://mpgtx.sourceforge.net/

mpgtx -3 movie.mpg -b mysplit

will split the movie into 3 chunks with the names mysplit-1.mpg, mysplit-2.mpg, mysplit-3.mpg

That said, I seem to have trouble with the audio when I use this - but I don't know if you'd have that problem too.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!