wip potato
This commit is contained in:
parent
1fc90173f7
commit
3a0dbd084f
4 changed files with 6 additions and 5 deletions
6
Makefile
6
Makefile
|
@ -1,11 +1,11 @@
|
||||||
all : sample0.xex sample1.xex sample2.xex sample3.xex sample4.xex sample5.xex sample6.xex fruit.xex mapclock.xex sailboat.xex sunset.xex train404.xex
|
all : sample0.xex sample1.xex sample2.xex sample3.xex sample4.xex sample5.xex sample6.xex fruit.xex mapclock.xex sailboat.xex sunset.xex train404.xex potato.xex
|
||||||
|
|
||||||
# sample5.s from sample5.jpg
|
# sample5.s from sample5.jpg
|
||||||
|
|
||||||
# reminder: $< is input
|
# reminder: $< is input
|
||||||
# $@ is output
|
# $@ is output
|
||||||
|
|
||||||
%.s : %.jpg dither-image.js
|
%.s : %.jpg dither-image.js gif.sh mp4.sh
|
||||||
node dither-image.js $< $@
|
node dither-image.js $< $@
|
||||||
./gif.sh $@
|
./gif.sh $@
|
||||||
./mp4.sh $@
|
./mp4.sh $@
|
||||||
|
@ -16,7 +16,7 @@ chickens.s : chickens.wav pack-wav.js
|
||||||
%.o : %.s
|
%.o : %.s
|
||||||
ca65 -v -t atari -o $@ $<
|
ca65 -v -t atari -o $@ $<
|
||||||
|
|
||||||
%.xex : %.o dither4.o chickens.o
|
%.xex : %.o dither4.o chickens.o atari-asm-xex.cfg
|
||||||
ld65 -v -C ./atari-asm-xex.cfg -o $@ dither4.o chickens.o $<
|
ld65 -v -C ./atari-asm-xex.cfg -o $@ dither4.o chickens.o $<
|
||||||
|
|
||||||
clean :
|
clean :
|
||||||
|
|
3
gif.sh
3
gif.sh
|
@ -8,5 +8,6 @@ ffmpeg \
|
||||||
ffmpeg \
|
ffmpeg \
|
||||||
-r $fps -i "$1.%01d.png" \
|
-r $fps -i "$1.%01d.png" \
|
||||||
-i "$1.palette.png" \
|
-i "$1.palette.png" \
|
||||||
-lavfi "paletteuse[1],[1]scale=w=640:h=384:sws_flags=neighbor" \
|
-lavfi "[0]scale=w=800:h=480:sws_flags=neighbor[scaled];\
|
||||||
|
[scaled][1]paletteuse=dither=none" \
|
||||||
-y "$1.gif"
|
-y "$1.gif"
|
||||||
|
|
2
mp4.sh
2
mp4.sh
|
@ -2,6 +2,6 @@ fps=60000/1001
|
||||||
|
|
||||||
ffmpeg \
|
ffmpeg \
|
||||||
-r $fps -i "$1.%01d.png" \
|
-r $fps -i "$1.%01d.png" \
|
||||||
-vf scale=w=640:h=384:sws_flags=neighbor,format=yuv420p \
|
-vf scale=w=800:h=480:sws_flags=neighbor,format=yuv420p \
|
||||||
-g 480 \
|
-g 480 \
|
||||||
-y "$1.mp4"
|
-y "$1.mp4"
|
||||||
|
|
BIN
potato.jpg
Normal file
BIN
potato.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 69 KiB |
Loading…
Reference in a new issue