{"id":20317290,"url":"https://github.com/botbahlul/rendersrt","last_synced_at":"2025-10-08T08:56:34.912Z","repository":{"id":169372513,"uuid":"645326309","full_name":"botbahlul/rendersrt","owner":"botbahlul","description":"rendersrt is a simple command line tool made with python to render a subtitle file into any video files","archived":false,"fork":false,"pushed_at":"2024-05-05T17:00:57.000Z","size":69,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-08T08:56:34.061Z","etag":null,"topics":["caption","ffmpeg","python","srt-subtitle","subriptext","subtitle","subtitle-render"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/botbahlul.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2023-05-25T12:06:22.000Z","updated_at":"2024-05-05T17:01:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"2f846117-9f52-407d-859c-da8e8bf3e4e8","html_url":"https://github.com/botbahlul/rendersrt","commit_stats":null,"previous_names":["botbahlul/rendersrt"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/botbahlul/rendersrt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/botbahlul%2Frendersrt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/botbahlul%2Frendersrt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/botbahlul%2Frendersrt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/botbahlul%2Frendersrt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/botbahlul","download_url":"https://codeload.github.com/botbahlul/rendersrt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/botbahlul%2Frendersrt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278916434,"owners_count":26068090,"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","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["caption","ffmpeg","python","srt-subtitle","subriptext","subtitle","subtitle-render"],"created_at":"2024-11-14T18:30:44.613Z","updated_at":"2025-10-08T08:56:34.893Z","avatar_url":"https://github.com/botbahlul.png","language":"Python","readme":"# rendersrt \u003ca href=\"https://pypi.python.org/pypi/rendersrt\"\u003e\u003cimg src=\"https://img.shields.io/pypi/v/rendersrt.svg\"\u003e\u003c/img\u003e\u003c/a\u003e\n\n### Render subtitle files into any video / audio files\nrendersrt is a simple command line tool made with python to render a subtitle file into any video or audio files.\n\n### Installation\nIf you don't have python on your Windows system you can try compiled version from this git release assets\nhttps://github.com/botbahlul/rendersrt/releases\n\nIf it doesn't run well then you need to install python on your Windows system.\n\nJust extract those ffmpeg.exe and rendersrt.exe into a folder that has been added to PATH ENVIRONTMET for example in C:\\Windows\\system32\n\nYou can get latest version of ffmpeg from https://www.ffmpeg.org/\n\nIn Linux you have to install this script with python (version minimal 3.8 ) and install ffmpeg with your linux package manager for example in debian based linux distribution you can type :\n\n```\nsudo apt update\nsudo apt install -y ffmpeg\n```\n\nTo install this rendersrt, just type :\n```\npip install rendersrt\n```\n\nYou can try to compile that rendersrt.py script in win/linux folder into a single executable file with pyinstaller by typing these :\n```\npip install pyinstaller\npyinstaller --onefile rendersrt.py\n```\n\nThe executable compiled file will be placed by pyinstaller into dist subfolder of your current working folder, so you can just rename and put that compiled file into a folder that has been added to your PATH ENVIRONTMENT so you can execute it from anywhere\n\nI was succesfuly compiled it in Windows 10 with pyinstaller-5.1 and Pyhton-3.10.4, and python-3.8.12 in Debian 9\n\nAnother alternative way to install this script with python is by cloning this git (or downloading this git as zip then extract it into a folder), and then just type :\n\n```\npip install wheel\npython setup.py build\npython setup.py bdist_wheel\n```\n\nThen check the name of the whl file created in dist folder. In case the filename is rendersrt-0.0.1-py2.py3-none-any.whl then you can install that whl file with pip :\n```\ncd dist\npip install rendersrt-0.0.1-py2.py3-none-any.whl\n```\n\nYou can also install this script (or any pip package) in ANDROID DEVICES via PYTHON package in TERMUX APP\n\nhttps://github.com/termux/termux-app/releases/tag/v0.118.0\n\nChoose the right apk for your device, install it, then open it\n\nType these commands to get python, pip, this rendersrt, (and any other pip packages) :\n\n```\ntermux-setup-storage\npkg update -y\npkg install -y python\npkg install -y ffmpeg\npip install rendersrt\n```\n\n### Simple usage example \n\n```\nrendersrt --help\nrendersrt \"Episode 1.mp4\" \"Episode 1.srt\" \"output.mp4\"\n```\n\n### Usage\n\n```\nusage: rendersrt [-h] [-v] video_file_path subtitle_file_path output_file_path\n\npositional arguments:\n  video_file_path     video file path\n  subtitle_file_path  SRT subtitle file path\n  output_file_path    output video file path\n\noptions:\n  -h, --help          show this help message and exit\n  -v, --version       show program's version number and exit\n```\n\n### License\n\nMIT\n\nCheck my other SPEECH RECOGNITIION + TRANSLATE PROJECTS https://github.com/botbahlul?tab=repositories\n\nBuy me coffee : https://sociabuzz.com/botbahlul/tribe\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbotbahlul%2Frendersrt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbotbahlul%2Frendersrt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbotbahlul%2Frendersrt/lists"}