From eca94231f5cf830f7450cc3302fbbca15927f19c Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 28 Jun 2023 15:52:09 -0700 Subject: [PATCH] wip --- generate.sh | 8 +++++ index.html | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 11 ++++++ 3 files changed, 116 insertions(+) create mode 100755 generate.sh create mode 100644 index.html create mode 100644 package.json diff --git a/generate.sh b/generate.sh new file mode 100755 index 0000000..3accd8b --- /dev/null +++ b/generate.sh @@ -0,0 +1,8 @@ +ffmpeg \ + -i llamigos-orig.webm \ + -vf format=yuv444p,scale=80:150,setsar=1 \ + -an \ + -vcodec libvpx-vp9 \ + -row-mt 1 \ + -crf 20 \ + -y llamigos.webm diff --git a/index.html b/index.html new file mode 100644 index 0000000..c81c0e4 --- /dev/null +++ b/index.html @@ -0,0 +1,97 @@ + + + + + Block video encoding test + + + +

Block video encoding test

+ +

Source video

+
+ +
+ +

Work canvas

+
+ +
+ + + + \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..5a8c2c2 --- /dev/null +++ b/package.json @@ -0,0 +1,11 @@ +{ + "name": "blocky6502", + "version": "1.0.0", + "description": "text-mode-video hack for Atari 800 family", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "brion@pobox.com", + "license": "MIT" +}