Compare commits

...

2 Commits

Author SHA1 Message Date
elburg 74011b078b got a testing script
and stuff to the lua files
adjusted the gitignore
2 months ago
elburg 155edca57f oh hey, sum muuns :D 2 months ago

3
.gitignore vendored

@ -40,4 +40,5 @@ luac.out
*.x86_64
*.hex
# Testing directory for mpv-alpha
.test/

@ -0,0 +1 @@
-- stuff for the config files

@ -0,0 +1 @@
require"config"

@ -0,0 +1,24 @@
-- constants, defaults, and other shit
constants = {
defaults = {
dirs = {
mpv = {
linux = {
"~/.config/mpv/",
"~/.mpv/"
}
}
}
}
}
default_conf = {
configjson = [[
{
"history": {
"save_history": true
}
}
]]
}

@ -0,0 +1,11 @@
# please have yt-dlp
mkdir -p .test/
yt-dlp \
--no-write-info-json \
--output "./.test/video.mp4" \
--remux-video "mp4" \
-w \
"https://www.youtube.com/watch?v=T6_81D9HQdU"
mpv -v --load-scripts=no --script=./src/ ./.test/video.mp4
Loading…
Cancel
Save