ffmpeg video editing command in milliseconds timestamp

一个人想着一个人 提交于 2019-11-29 05:24:41

问题


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:


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.



来源:https://stackoverflow.com/questions/23171937/ffmpeg-video-editing-command-in-milliseconds-timestamp

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