Compare commits

...

2 Commits

2 changed files with 16 additions and 8 deletions

View File

@ -406,14 +406,6 @@
{
"from": { "key_code": "left_command" },
"to": [{ "key_code": "right_command" }]
},
{
"from": { "key_code": "grave_accent_and_tilde" },
"to": [{ "key_code": "non_us_backslash" }]
},
{
"from": { "key_code": "non_us_backslash" },
"to": [{ "key_code": "grave_accent_and_tilde" }]
}
],
"virtual_hid_keyboard": {

16
.local/bin/ffmpeg-resize-sub Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
FILE_FFMPEG="$1"
ffmpeg -i "$FILE_FFMPEG" \
-vf "scale=1920:1080" \
-c:v h264_videotoolbox \
-b:v 3000k \
-preset medium \
-movflags \
+faststart \
-c:a aac \
-b:a 192k \
-ac 2 \
-map 0:v \
-map 0:a \
-map 0:s \
-c:s copy resized.mkv