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?
相关问题
- Improving accuracy of Google Cloud Speech API
- Video Format that Works on Mobile Phones
- MP4 codec support in Chromium
- Streaming video (C# using FFmpeg AutoGen) sends mu
- How do I decode opus file to pcm file using libavc
相关文章
- Handling ffmpeg library interface change when upgr
- How to use a framework build of Python with Anacon
- c++ mp3 library [closed]
- Passing a native fd int to FFMPEG from openable UR
- FFmpeg - What does non monotonically increasing dt
- Why html5 video loop create request each iteration
- PowerShell Pass Named parameters to ArgumentList
- ffmpeg run from shell runs properly, but does not
you can try:
Timestamps need to be in HH:MM:SS.xxx format for advanced precision (where xxx are milliseconds).
Let me know if it works.