<div align="center">
<b style="font-size:320%;">ClipStitcher</b>
<p style="font-size:120%;">
A simple tool to automaticaly create video sequences with simple edits<br>
( does not process audio yet )
</p>
<img src="logo.png?raw=True" width="250"/>
</div>
## Instalation instruction using pip
```bash
pip instal clipstitcher
```
## Quick documentation:
**Start with importing the package:**
```python
from clipstitcher import *
```
**How to create scenes:**
```python
my_scene_1 = Image("path_to_my_img.jpg", duration=5)
my_scene_2 = Video("path_to_my_video.mp4")
scene_seq = Scene_sequence([my_scene_1, my_scene_2])
```
**How to play or render any scene:**
```python
my_scene_1.play()
my_scene_2.render()
scene_seq.render(threads=2) # renders in parallel (default threads=1)
```
**Or more specific instructions:**
```python
my_scene_1.play(start=start_frame_int, stop=stop_frame_int)
scene_seq.render(start=start_frame_int, stop=stop_frame_int, output="my_video.avi")
```
**We can nest scenes arbitrarily:**
```python
deepest_level = Video("path_to_my_video.mp4")
middle_level = Overlay(deepest_scene, "path_to_my_overlay.jpg")
almost_top_level = Overlay(middle_level_scene, "path_to_different_overlay.jpg")
the_most_top_level = Scene_sequence([deepest_level, middle_level, almost_top_level])
the_most_top_level.render("getting_deeper.avi")
```
**All available scenes with their args and kwargs:**
```python
Image(filepath, duration=5)
HtmlPage(url_or_filepath_or_htmlstring, duration=5)
Tweet(url, duration=5)
load_tweets_from_file("path_to_text_file_with_urls", duration=5)
Video("filepath")
load_videos_from_folder("path_to_folder_full_of_videos")
Overlay(scene, "overlay_filepath", screen_color = [0, 255, 0])
Scene_sequence(list_of_scenes)
```
Raw data
{
"_id": null,
"home_page": "https://github.com/LiborKudela/clipsticher",
"name": "clipstitcher",
"maintainer": null,
"docs_url": null,
"requires_python": ">3.8.0",
"maintainer_email": null,
"keywords": "video, editing, sequence, rendering",
"author": "Libor Kudela",
"author_email": "libor.kudela1@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/59/96/226d3c183f9bf72bc9290b9c35e99c2f02b559623b1ea68d09dfb23e23c7/clipstitcher-0.2.6.tar.gz",
"platform": null,
"description": "<div align=\"center\">\n<b style=\"font-size:320%;\">ClipStitcher</b>\n<p style=\"font-size:120%;\">\nA simple tool to automaticaly create video sequences with simple edits<br>\n( does not process audio yet )\n</p>\n <img src=\"logo.png?raw=True\" width=\"250\"/>\n</div>\n\n## Instalation instruction using pip\n```bash \npip instal clipstitcher\n``` \n\n## Quick documentation:\n\n**Start with importing the package:**\n```python\nfrom clipstitcher import *\n```\n\n**How to create scenes:**\n```python\nmy_scene_1 = Image(\"path_to_my_img.jpg\", duration=5)\nmy_scene_2 = Video(\"path_to_my_video.mp4\")\nscene_seq = Scene_sequence([my_scene_1, my_scene_2])\n```\n\n**How to play or render any scene:**\n```python\nmy_scene_1.play()\nmy_scene_2.render()\nscene_seq.render(threads=2) # renders in parallel (default threads=1)\n```\n\n**Or more specific instructions:**\n```python\nmy_scene_1.play(start=start_frame_int, stop=stop_frame_int)\nscene_seq.render(start=start_frame_int, stop=stop_frame_int, output=\"my_video.avi\")\n```\n\n**We can nest scenes arbitrarily:**\n```python\ndeepest_level = Video(\"path_to_my_video.mp4\")\nmiddle_level = Overlay(deepest_scene, \"path_to_my_overlay.jpg\")\nalmost_top_level = Overlay(middle_level_scene, \"path_to_different_overlay.jpg\")\nthe_most_top_level = Scene_sequence([deepest_level, middle_level, almost_top_level])\nthe_most_top_level.render(\"getting_deeper.avi\")\n```\n\n**All available scenes with their args and kwargs:**\n```python\nImage(filepath, duration=5)\nHtmlPage(url_or_filepath_or_htmlstring, duration=5)\nTweet(url, duration=5)\nload_tweets_from_file(\"path_to_text_file_with_urls\", duration=5)\nVideo(\"filepath\")\nload_videos_from_folder(\"path_to_folder_full_of_videos\")\nOverlay(scene, \"overlay_filepath\", screen_color = [0, 255, 0])\nScene_sequence(list_of_scenes)\n```\n\n\n",
"bugtrack_url": null,
"license": null,
"summary": "A python package for quick cutting video sequences",
"version": "0.2.6",
"project_urls": {
"Homepage": "https://github.com/LiborKudela/clipsticher"
},
"split_keywords": [
"video",
" editing",
" sequence",
" rendering"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "dceb32f750a2341a30919c1539eed3599756afba255152e48111d5d2402c11f7",
"md5": "2a15edd7b20d43eb47d07a4f2910004b",
"sha256": "dbc7ef6b596043c6f978607ece1de06b02ea0649a646be24403d8b239482298b"
},
"downloads": -1,
"filename": "clipstitcher-0.2.6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2a15edd7b20d43eb47d07a4f2910004b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">3.8.0",
"size": 11676,
"upload_time": "2025-07-18T12:17:24",
"upload_time_iso_8601": "2025-07-18T12:17:24.696876Z",
"url": "https://files.pythonhosted.org/packages/dc/eb/32f750a2341a30919c1539eed3599756afba255152e48111d5d2402c11f7/clipstitcher-0.2.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5996226d3c183f9bf72bc9290b9c35e99c2f02b559623b1ea68d09dfb23e23c7",
"md5": "79b3bdb3d754f8fdb312fd6a881bd8ae",
"sha256": "03984afc09875ae42c2e8fce7a20b615a228b05386e65f3bf797beb75b687763"
},
"downloads": -1,
"filename": "clipstitcher-0.2.6.tar.gz",
"has_sig": false,
"md5_digest": "79b3bdb3d754f8fdb312fd6a881bd8ae",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">3.8.0",
"size": 11913,
"upload_time": "2025-07-18T12:17:25",
"upload_time_iso_8601": "2025-07-18T12:17:25.745197Z",
"url": "https://files.pythonhosted.org/packages/59/96/226d3c183f9bf72bc9290b9c35e99c2f02b559623b1ea68d09dfb23e23c7/clipstitcher-0.2.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-18 12:17:25",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "LiborKudela",
"github_project": "clipsticher",
"github_not_found": true,
"lcname": "clipstitcher"
}