ffmpeg video editing command in milliseconds times

2019-03-17 14:23发布

I am editing a video through ffmpeg where I have to keep in view the timestamp further deep from seconds to milliseconds. I know such command : ffmpeg -i a.ogg -ss 00:01:02 -to 00:01:03 -c copy x2.ogg. It point to seconds, but I want to go to milliseconds. What should I do?

1条回答
倾城 Initia
2楼-- · 2019-03-17 14:29

you can try:

ffmpeg -i a.ogg -ss 00:01:02.500 -t 00:01:03.250 -c copy x2.ogg

Timestamps need to be in HH:MM:SS.xxx format for advanced precision (where xxx are milliseconds).

Let me know if it works.

查看更多
登录 后发表回答