Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FFMPEG fast frame count #1004

Merged
merged 4 commits into from
Jun 2, 2020

Commits on Jun 1, 2020

  1. Implemented a faster alternative to counting number of frames in FFMPEG.

    Instead of advancing through the entire video and counting every frame,
    the new algorithm seeks to the last keyframe it can find and then advances
    to the end to discover the frame number of the last frame.  With this change
    the number of frames is accessible in constant time rather than linear in the
    number of frames of video.
    mleotta committed Jun 1, 2020
    Configuration menu
    Copy the full SHA
    e61e6c9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    04f546a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5ae1431 View commit details
    Browse the repository at this point in the history
  4. added release note

    mleotta committed Jun 1, 2020
    Configuration menu
    Copy the full SHA
    d07fc28 View commit details
    Browse the repository at this point in the history