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

transmux: use smaller chunks when concatenating long list of files #1212

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Apr 7, 2024

  1. transmux: use smaller chunks when concatenating long list of files

    When very large files are ingested, the segmented file list can be a
    very long list. This list of files are passed to ffmpeg commands which
    will may fail with a 'command: arg list too long' error (linux error and
    not ffmpeg error). This happens because the arg length exceeds the
    MAX_ARG limit which varies from kernel to kernel. To workaround this
    issue, we break down the list into smaller chunks and then concat those
    chunks to get the final concatenated file.
    emranemran committed Apr 7, 2024
    Configuration menu
    Copy the full SHA
    acae61b View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2024

  1. Configuration menu
    Copy the full SHA
    2302917 View commit details
    Browse the repository at this point in the history