Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/b1scoito/mpv-cut
A video cutting/clipping/slicing script for mpv
https://github.com/b1scoito/mpv-cut
mpv-clip mpv-cut mpv-script mpv-slice
Last synced: 3 months ago
JSON representation
A video cutting/clipping/slicing script for mpv
- Host: GitHub
- URL: https://github.com/b1scoito/mpv-cut
- Owner: b1scoito
- License: gpl-3.0
- Created: 2022-01-20T20:11:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-15T00:31:43.000Z (about 2 years ago)
- Last Synced: 2024-06-30T13:42:24.325Z (5 months ago)
- Topics: mpv-clip, mpv-cut, mpv-script, mpv-slice
- Language: Lua
- Homepage: https://github.com/b1scoito/mpv-cut
- Size: 64.5 KB
- Stars: 10
- Watchers: 3
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mpv - cut - Video cutting/clipping/slicing script. (Video Editing)
README
# mpv-cut
A video cutting/clipping/slicing script for [mpv](https://mpv.io/)## Features
- Can generate a small file with a pre-defined size, resolution and audio bitrate using `shift` + `c`.
- You're able to input custom FFmpeg parameters in the normal cutting process using `c`## Installation
### Linux
Place it inside the Linux mpv scripts folder normally on: `~/.config/mpv/scripts`, and install the FFmpeg package if not already installed.
- Ubuntu: `sudo apt install ffmpeg`
- Arch: `sudo pacman -S ffmpeg` or `yay -S ffmpeg`### Windows
Place it inside the Windows mpv scripts folder normally on `%appdata%\mpv\scripts`, and install the FFmpeg package if not already installed with [Chocolatey](https://chocolatey.org/install).
- Chocolatey (open cmd/powershell as admin): `choco install ffmpeg-full` or `cinst ffmpeg-full`## Usage
Press the default key `C` to mark the first position, and where you desire to save, on the last position, press `C` again.
Use `Shift+C` for cutting with a smaller file size. Disclaimer: This will result in way slower cutting speeds.## Settings
The settings can be changed by editing the [script](https://github.com/b1scoito/mpv-cut/blob/main/mpv_cut.lua#L7) file.
```lua
local settings = {
key_mark_cut = "c",
video_extension = "mp4",-- if you want faster cutting, leave this blank
ffmpeg_custom_parameters = "",web = {
-- small file settings
key_mark_cut = "shift+c",audio_target_bitrate = "128", -- kbps
video_target_file_size = "8", -- mb
video_target_scale = "1280:-1" -- https://trac.ffmpeg.org/wiki/Scaling everthing after "scale=" will be considered, keep "original" for no changes to the scaling
}
}
```### Further explanation
- `key_mark_cut`: The key for cutting the video.
- `video_extension`: The output extension of the video.
- `ffmpeg_custom_parameters`: FFmpeg custom parameters to use. Disclaimer: This _will_ result in way slower cutting speeds as it is not going to use `-c copy` anymore.
- `web.key_mark_cut`: The key for cutting the video with a shareable web file size (todo).
- `web.audio_target_bitrate`: Target audio bitrate for the web cut.
- `web.video_target_file_size`: Target file size for the web cut.
- `web.video_target_scale`: Target video scale (https://trac.ffmpeg.org/wiki/Scaling), keep "original" for no changes to the scaling.