Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • F ffmpeg-python
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 402
    • Issues 402
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 34
    • Merge requests 34
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Karl Kroening
  • ffmpeg-python
  • Merge requests
  • !298

Changed the order of the argumets for output to appear last

  • Review changes

  • Download
  • Email patches
  • Plain diff
Open Nitaym requested to merge github/fork/Nitaym/change-output-order into master Dec 10, 2019
  • Overview 1
  • Commits 1
  • Pipelines 1
  • Changes 1

Hi,

The output arguments are defaulted to appear before the global arguments - This could cause issues with ffmepg command line as it expects all the stream arguments to be between the -i and -f.

See this example: This would work: ffmpeg -i ~/Movies/sample.ts -map data -c copy -f data - But this would return a "Stream not found" error: ffmpeg -i ~/Movies/oparea4.ts -f data - -map data -c copy

This PR replaces the order so that output arguments would appear last

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: github/fork/Nitaym/change-output-order