Created
September 8, 2012 11:53
-
-
Save kevinkirkup/3674147 to your computer and use it in GitHub Desktop.
FFMPEGx - Dump MpegTS file timestamp information to the console
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -debug_ts -re -copyts -i <intput_ts> -f null out.null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-debug_ts
This prints out debug information to the console
-re
This reads the source file in at the same framerate as the rate specified in the capture. This simulates a capture from a capture device.
-copyts
This copies the timestamps from the source file instead of manipulating the timestamps
-f null
This writes the output to the null device which just throws away the data.