ffmpeg video editing command in milliseconds timestamp

前端 未结 2 1709
深忆病人
深忆病人 2020-12-29 01:59

I am editing a video with ffmpeg where I have to keep in view the timestamp further deep from seconds to milliseconds. I know such command : ffmpeg -i a.o

2条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-29 02:37

    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.

提交回复
热议问题