Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sukhbinder/vidtoolz-trim
Trim video using ffmpeg
https://github.com/sukhbinder/vidtoolz-trim
Last synced: 16 days 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 (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-01-08T07:01:40.000Z (26 days ago)
- Last Synced: 2025-01-08T15:49:23.220Z (26 days 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
[![PyPI](https://img.shields.io/pypi/v/vidtoolz-trim.svg)](https://pypi.org/project/vidtoolz-trim/)
[![Changelog](https://img.shields.io/github/v/release/sukhbinder/vidtoolz-trim?include_prereleases&label=changelog)](https://github.com/sukhbinder/vidtoolz-trim/releases)
[![Tests](https://github.com/sukhbinder/vidtoolz-trim/workflows/Test/badge.svg)](https://github.com/sukhbinder/vidtoolz-trim/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](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
```