2023-07-08 21:07:04 +03:00
|
|
|
# clip-maker
|
|
|
|
|
2023-07-10 01:03:10 +03:00
|
|
|
Simple program to split video file into clips of requested length
|
|
|
|
|
|
|
|
```
|
2023-07-18 20:20:35 +03:00
|
|
|
go run . --filename 'Family Guy - S01E01 - Death Has a Shadow SDTV.mkv' --clip_length 5s
|
2023-07-10 01:04:47 +03:00
|
|
|
```
|
|
|
|
|
2023-07-10 01:41:07 +03:00
|
|
|
# Dependencies
|
|
|
|
|
|
|
|
This program relies on ffmpeg so make sure to install it
|
|
|
|
|
2023-07-10 01:04:47 +03:00
|
|
|
# Running with nix
|
|
|
|
```
|
2024-02-23 19:01:25 +02:00
|
|
|
nix run git+https://forge.catnip.ee/batteredbunny/clip-maker -- --filename 'Video.mp4'
|
|
|
|
```
|