{"id":47846255,"url":"https://github.com/cool-dev-guy/tkintervideo","last_synced_at":"2026-04-03T21:22:14.146Z","repository":{"id":211520922,"uuid":"729376189","full_name":"cool-dev-guy/tkintervideo","owner":"cool-dev-guy","description":"A simple Video Player widget with audio support for tkinter.","archived":false,"fork":false,"pushed_at":"2023-12-15T09:56:12.000Z","size":32,"stargazers_count":5,"open_issues_count":3,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-28T21:41:43.352Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/cool-dev-guy.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,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-12-09T03:28:36.000Z","updated_at":"2025-08-17T10:09:36.000Z","dependencies_parsed_at":"2023-12-15T10:44:52.736Z","dependency_job_id":"353c2607-9acb-48d8-9561-9edab85b31ea","html_url":"https://github.com/cool-dev-guy/tkintervideo","commit_stats":null,"previous_names":["cool-dev-guy/tkvideo"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cool-dev-guy/tkintervideo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cool-dev-guy%2Ftkintervideo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cool-dev-guy%2Ftkintervideo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cool-dev-guy%2Ftkintervideo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cool-dev-guy%2Ftkintervideo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cool-dev-guy","download_url":"https://codeload.github.com/cool-dev-guy/tkintervideo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cool-dev-guy%2Ftkintervideo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31377627,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T17:53:18.093Z","status":"ssl_error","status_checked_at":"2026-04-03T17:53:17.617Z","response_time":107,"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":[],"created_at":"2026-04-03T21:22:13.594Z","updated_at":"2026-04-03T21:22:14.136Z","avatar_url":"https://github.com/cool-dev-guy.png","language":"Python","funding_links":["https://www.buymeacoffee.com/cooldevguy","https://img.buymeacoffee.com/button-api/?text=Buy"],"categories":[],"sub_categories":[],"readme":"# tkintervideo\n\nA simple Tkinter Python Package For synced audio \u0026 video playback with a real-time API.\n\n`beta 0.0.3`\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://github.com/cool-dev-guy/tkintervideo/assets/116984615/73b591e6-234e-464b-9e0d-2a350ca73946)\" width=100% height=100%\u003e\n\u003c/p\u003e\n\n## Installation\n- From PyPi\n    - ```bash\n      pip install tkvideo\n      ```\n- If any error's:\n    - ```bash\n      pip install -r requirements.txt\n      ```\n    - Or Build it normally(refer web).\n## Features:\n\n    - Controls Widget Added\n    - Timeline seeking.(slider based \u0026 button based)\n    - Synced audio playback.(Video is synced with audio)\n    - Upto any Resolution video playback(using PIL \u0026 imageio)\n    - TODO: youtube/hls support.\n    - In-player real-time audio \u0026 video edits.\n\n\n    - duration\n    - fps\n    - audio frame rate\n    - state detection\n    - auto resize(based on window resize)\n    - total frames\n    - current play position\n    - seeking(to a second or a frame)\n    - play/pause/stop/resume\n    - volume\n    - edits(you can edit the video \u0026 audio because moviepy \u0026 pydub are built-in)\n\n### Buy me a cool-milk for support \u0026 updates\n\n\u003ca href=\"https://www.buymeacoffee.com/cooldevguy\"\u003e\u003cimg src=\"https://img.buymeacoffee.com/button-api/?text=Buy me a cool-milk\u0026emoji=🥛\u0026slug=cooldevguy\u0026button_colour=49a835\u0026font_colour=ffffff\u0026font_family=Comic\u0026outline_colour=ffffff\u0026coffee_colour=FFDD00\" /\u003e\u003c/a\u003e\n\n    (Note: Two buttons are the same,added both because i like the color.)\n\n## Usage\n\n```python\nfrom tkintervideo import player\nfrom tkintervideo.tools import Controls\nimport tkinter as tk\nfrom tkinter import ttk\nimport sv_ttk\nimport time\n\nclass App(tk.Tk):\n    def __init__(self,*args,**kwargs):\n        super().__init__(*args,**kwargs)\n        sv_ttk.set_theme('dark')\n        self.m_widget = player.Player(self,height=200,width=300)\n\n        self.rowconfigure(0,weight=1)\n        self.rowconfigure(1,weight=0)\n        self.columnconfigure(0,weight=1)\n\n        self.m_widget.grid(column=0,row=0,sticky=tk.NSEW,padx=5,pady=5)\n        self.m_widget.load('output.avi')\n\n        self.controls = Controls(self,self.m_widget)\n        self.m_widget.bind(\"\u003c\u003cDuration\u003e\u003e\",self.controls.update_scale)\n        self.controls.grid(column=0,row=1,sticky=tk.NSEW,padx=10,pady=10)\nmyApp = App()\nmyApp.mainloop()\n```\n\n## Contributing\n\nPull requests are welcome.\n\n## License\n\n[GPL-3](https://choosealicense.com/licenses/gpl-3.0/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcool-dev-guy%2Ftkintervideo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcool-dev-guy%2Ftkintervideo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcool-dev-guy%2Ftkintervideo/lists"}