Skip to content

Instantly share code, notes, and snippets.

@kevinkirkup
Created September 8, 2012 11:53
Show Gist options
  • Save kevinkirkup/3674147 to your computer and use it in GitHub Desktop.
Save kevinkirkup/3674147 to your computer and use it in GitHub Desktop.
FFMPEGx - Dump MpegTS file timestamp information to the console
ffmpeg -debug_ts -re -copyts -i <intput_ts> -f null out.null
@kevinkirkup
Copy link
Author

-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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment