https://github.com/sukhbinder/vidtoolz-trim
Trim video using ffmpeg
https://github.com/sukhbinder/vidtoolz-trim
Last synced: 3 months ago
JSON representation
Trim video using ffmpeg
- Host: GitHub
- URL: https://github.com/sukhbinder/vidtoolz-trim
- Owner: sukhbinder
- License: apache-2.0
- Created: 2025-01-01T08:44:57.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-03-27T02:48:23.000Z (3 months ago)
- Last Synced: 2025-03-27T03:28:44.732Z (3 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vidtoolz-trim
[](https://pypi.org/project/vidtoolz-trim/)
[](https://github.com/sukhbinder/vidtoolz-trim/releases)
[](https://github.com/sukhbinder/vidtoolz-trim/actions?query=workflow%3ATest)
[](https://github.com/sukhbinder/vidtoolz-trim/blob/main/LICENSE)Trim video using ffmpeg
## Installation
First install [vidtoolz](https://github.com/sukhbinder/vidtoolz).
```bash
pip install vidtoolz
```Then install this plugin in the same environment as your vidtoolz application.
```bash
vidtoolz install vidtoolz-trim
```
## Usagetype ``vidtoolz-trim --help`` to get help
## Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd vidtoolz-trim
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```