{"id":20906051,"url":"https://github.com/sashacmc/mixvideoconcat","last_synced_at":"2026-03-06T09:32:36.752Z","repository":{"id":235582893,"uuid":"790927950","full_name":"sashacmc/mixvideoconcat","owner":"sashacmc","description":"Mixed Videos Concatenator based on ffmpeg","archived":false,"fork":false,"pushed_at":"2024-11-08T08:21:09.000Z","size":48,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-29T13:07:37.066Z","etag":null,"topics":["command-line-tool","ffmpeg","library","python-library","python3","utils","video-processing"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sashacmc.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-23T19:27:58.000Z","updated_at":"2025-05-26T16:37:18.000Z","dependencies_parsed_at":"2024-04-26T20:24:34.880Z","dependency_job_id":"b73c8bb3-a038-4e53-b207-a685b1a17b75","html_url":"https://github.com/sashacmc/mixvideoconcat","commit_stats":null,"previous_names":["sashacmc/mixvideoconcat"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sashacmc/mixvideoconcat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashacmc%2Fmixvideoconcat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashacmc%2Fmixvideoconcat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashacmc%2Fmixvideoconcat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashacmc%2Fmixvideoconcat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sashacmc","download_url":"https://codeload.github.com/sashacmc/mixvideoconcat/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sashacmc%2Fmixvideoconcat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30168986,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T07:56:45.623Z","status":"ssl_error","status_checked_at":"2026-03-06T07:55:55.621Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["command-line-tool","ffmpeg","library","python-library","python3","utils","video-processing"],"created_at":"2024-11-18T13:28:48.847Z","updated_at":"2026-03-06T09:32:36.714Z","avatar_url":"https://github.com/sashacmc.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MixVideoConcat\n\n![CodeQL](https://github.com/sashacmc/mixvideoconcat/workflows/CodeQL/badge.svg)\n[![PyPI - Version](https://img.shields.io/pypi/v/mixvideoconcat.svg)](https://pypi.org/project/mixvideoconcat)\n[![PyPI - Downloads](https://static.pepy.tech/badge/mixvideoconcat)](https://pepy.tech/project/mixvideoconcat)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.comixvideoconcatm/psf/black)\n\nMixVideoConcat is a Python tool/library based on ffmpeg for concatenating video files of different formats, resolutions, and orientations into a single video file. It supports various input formats and ensures seamless merging of videos while handling differences in resolution and orientation.\n\n## Installation\n\nYou can install MixVideoConcat via pip:\n\n```bash\npip install mixvideoconcat\n```\n\n## Command line tool usage\n\n```bash\nmixvideoconcat [-h] [-t TMPDIR] [-l LOGFILE] [-f] sources [sources ...] destination\n\npositional arguments:\n  sources               Source files\n  destination           Destination file\n\noptions:\n  -h, --help            show this help message and exit\n  -t TMPDIR, --tmpdir TMPDIR\n                        Directory for temprary files (they can be huge!)\n  -l LOGFILE, --logfile LOGFILE\n                        Log file\n  -f, --force           Overwrite existing\n  --deinterlace {on,off,auto}\n                        Deinterlace mode (default: auto)\n  --stabilize {on,off}  Stabilize mode (default: on)\n  -v, --verbose         Print verbose information (ffmpeg output)\n```\n\n## Example\n\nConcatenate three video files (video1.mp4, video2.mov, video3.avi) into a single video file named output.mp4:\n\n```bash\nmixvideoconcat video1.mp4 video2.mov video3.avi output.mp4\n```\n\n## Library usage\n\n```python\nfrom mixvideoconcat import concat\n\nconcat(['video1.mp4', 'video2.mov', 'video3.avi'], 'output.mp4')\n```\n\n## Tune\n\nYou can override the default constant rate factor (CRF) of 23 by setting the `FFMPEG_CRF` environment variable.\nThe frame rate will be determined as the maximum frame rate among the source files.\nTo override this, use the `FFMPEG_FR` environment variable.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit issues, feature requests, or pull requests.\n\n## Show your support\nGive a ⭐️ if this project helped you!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsashacmc%2Fmixvideoconcat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsashacmc%2Fmixvideoconcat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsashacmc%2Fmixvideoconcat/lists"}