diff options
author | pdp8 <pdp8@pdp8.info> | 2024-05-12 20:28:16 +0200 |
---|---|---|
committer | pdp8 <pdp8@pdp8.info> | 2024-05-12 20:28:16 +0200 |
commit | 17da4aec12049d9dd4f599d71d7945fc7895472b (patch) | |
tree | aacdaa971712921a91c7dae9ce4d52a8f3fb1618 | |
parent | 0555b2cd77986d916968f1443e375fad005c8d43 (diff) |
Makefile accidential caps fixed
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -67,8 +67,8 @@ $(TEST_DIR)/%.css: ./html/%.css $(TEST_DIR)/%.txt: ./html/%.txt cp $< $@ -%.MP3: %.FLAC - ffmpeg -i $< -y -vsync 0 -ab 256k -MAP_METADATA 0 -ID3V2_VERSION 3 $@ +%.mp3: %.flac + ffmpeg -i $< -y -vsync 0 -ab 256k -map_metadata 0 -id3v2_version 3 $@ %.webp: %.webm ffmpeg -i $< -HIDE_BANNER -loglevel error -vf thumbnail -frames:v 1 -c:v png -f image2pipe - | convert - $@ |