summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpdp8 <pdp8@pdp8.info>2024-05-12 20:28:16 +0200
committerpdp8 <pdp8@pdp8.info>2024-05-12 20:28:16 +0200
commit17da4aec12049d9dd4f599d71d7945fc7895472b (patch)
treeaacdaa971712921a91c7dae9ce4d52a8f3fb1618
parent0555b2cd77986d916968f1443e375fad005c8d43 (diff)
Makefile accidential caps fixed
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7c04719..718f799 100644
--- a/Makefile
+++ b/Makefile
@@ -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 - $@