backup of a important mpv extension
Go to file
Ren Tatsumoto 33cb8fb7a8 updating
2020-08-21 07:28:58 +03:00
LICENSE Initial commit 2020-08-21 04:16:38 +00:00
README.md updating 2020-08-21 07:28:58 +03:00
videoclip.lua add videoclip.lua 2020-08-21 07:19:06 +03:00

videoclip

Easily create videoclips with mpv in a few keypresses.

Installation

Install as a part of your dotfiles

$ config submodule add 'https://github.com/Ajatt-Tools/videoclip.git' ~/.config/mpv/scripts/videoclip

Install by cloning the repo

$ git clone 'https://github.com/Ajatt-Tools/videoclip.git' ~/.config/mpv/scripts/videoclip

Open or create ~/.config/mpv/scripts/modules.lua and add these lines:

local mpv_scripts_dir_path = os.getenv("HOME") ..  "/.config/mpv/scripts/"
function load(relative_path) dofile(mpv_scripts_dir_path .. relative_path) end
load("videoclip/videoclip.lua")

Updating

Submodules are updated using standard git commands:

$ config submodule update --remote --merge

or

$ cd ~/.config/mpv/scripts/videoclip && git pull