{"id":13494465,"url":"https://github.com/senko/python-video-converter","last_synced_at":"2026-03-15T04:39:40.848Z","repository":{"id":48343205,"uuid":"3685662","full_name":"senko/python-video-converter","owner":"senko","description":"Python Video Converter (ffmpeg wrapper)","archived":false,"fork":false,"pushed_at":"2021-07-30T23:35:04.000Z","size":4919,"stargazers_count":469,"open_issues_count":29,"forks_count":190,"subscribers_count":35,"default_branch":"master","last_synced_at":"2024-10-31T09:36:53.164Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/senko.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-03-11T08:51:17.000Z","updated_at":"2024-10-22T14:40:38.000Z","dependencies_parsed_at":"2022-08-19T06:01:47.385Z","dependency_job_id":null,"html_url":"https://github.com/senko/python-video-converter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senko%2Fpython-video-converter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senko%2Fpython-video-converter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senko%2Fpython-video-converter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senko%2Fpython-video-converter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/senko","download_url":"https://codeload.github.com/senko/python-video-converter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246045919,"owners_count":20714872,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-07-31T19:01:25.296Z","updated_at":"2025-12-18T12:30:57.929Z","avatar_url":"https://github.com/senko.png","language":"Python","funding_links":[],"categories":["Python","HarmonyOS","Language and platform specific libraries"],"sub_categories":["Windows Manager","Python"],"readme":"# Video Converter\n\n[![Build Status](https://travis-ci.org/senko/python-video-converter.png?branch=master)](https://travis-ci.org/senko/python-video-converter)\n\nVideo Converter is a Python module for converting video files from one format\nand codec to another.\n\nIt uses the [FFmpeg multimedia framework](http://ffmpeg.org/) for actual file\nprocessing, and adds an easy-to-use API for probing and converting media files\non top of it.\n\n## Quickstart\n\n    from converter import Converter\n    c = Converter()\n\n    info = c.probe('test1.ogg')\n\n    conv = c.convert('test1.ogg', '/tmp/output.mkv', {\n        'format': 'mkv',\n        'audio': {\n            'codec': 'mp3',\n            'samplerate': 11025,\n            'channels': 2\n        },\n        'video': {\n            'codec': 'h264',\n            'width': 720,\n            'height': 400,\n            'fps': 15\n        }})\n\n    for timecode in conv:\n        print \"Converting (%f) ...\\r\" % timecode\n\n\n## Documentation and tests\n\nThere's a fair amount of documentation in `doc/` directory.\nTo generate it from Sphinx sources, use:\n\n    python setup.py doc\n\nand then visit `doc/_build/html/index.html`.\n\nTo run the automated tests:\n\n    python setup.py test\n\nThe test suite assumes you already have the required `ffmpeg` and `ffprobe`\ntools installed on your system.\n\n## Installation and requirements\n\nTo install the package:\n\n    python setup.py install\n\nNote that this only installs the Python Video Converter library. The `ffmpeg`\nand `ffprobe` tools should be installed on the system separately, with all the\ncodec and format support you require.\n\nIf you need to compile and install the tools manually, have a look at the\nexample script `test/install-ffmpeg.sh` (used for automated test suite). It may\nor may not be useful for your requirements, so don't just blindly run it -\ncheck that it does what you need first.\n\n## Authors and Copyright\n\nCopyright \u0026copy; 2011-2013. Python Video Converter contributors. See the\n[AUTHORS.txt](AUTHORS.txt) File.\n\n## Licensing and Patents\n\nAlthough FFmpeg is licensed under LGPL/GPL, Video Converter only invokes the\nexisting ffmpeg executables on the system (ie. doesn’t link to the ffmpeg\nlibraries), so it doesn’t need to be LGPL/GPL as well.\n\nThe same applies to patents. If you’re in a country which recognizes software\npatents, it’s up to you to ensure you’re complying with the patent laws. Please\nread the FFMpeg Legal FAQ for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsenko%2Fpython-video-converter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsenko%2Fpython-video-converter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsenko%2Fpython-video-converter/lists"}