yt-dlp support

This commit is contained in:
synt-xerror
2026-03-12 01:22:29 -03:00
parent b96332e618
commit 240c392fad
5435 changed files with 991931 additions and 137 deletions

20
node_modules/fluent-ffmpeg/Makefile generated vendored Normal file
View File

@@ -0,0 +1,20 @@
REPORTER = spec
MOCHA = node_modules/.bin/mocha
test:
@NODE_ENV=test $(MOCHA) --require should --reporter $(REPORTER)
test-colors:
@NODE_ENV=test $(MOCHA) --require should --reporter $(REPORTER) --colors
publish:
@npm version patch -m "version bump"
@npm publish
JSDOC = node_modules/.bin/jsdoc
JSDOC_CONF = tools/jsdoc-conf.json
doc:
$(JSDOC) --configure $(JSDOC_CONF)
.PHONY: test test-colors publish doc