This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"title": "Claude Code Settings", | |
"description": "Configuration schema for Claude Code settings.json files", | |
"type": "object", | |
"additionalProperties": false, | |
"properties": { | |
"$schema": { | |
"type": "string", | |
"description": "JSON Schema reference for this configuration file" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": "1", | |
"primary": "#BD0323", | |
"secondary": "#22428F" | |
}, | |
{ | |
"id": "2", | |
"primary": "#BD0323", | |
"secondary": "#22428F" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for name in *.wav; do | |
ffmpeg -loop 1 -framerate 2 -i cover.jpg -i "$name" -c:v libx264 -preset medium -tune stillimage -crf 18 -c:a copy -shortest -pix_fmt yuv420p "${name%.*}.mkv" | |
done |