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" +}