- commit
- 32208be
- parent
- f7cf6cd
- author
- chasinglightning
- date
- 2025-02-05 12:29:11 -0500 EST
add some scripts i use often as bin files
4 files changed,
+12,
-0
+3,
-0
1@@ -0,0 +1,3 @@
2+#!/bin/bash
3+
4+for f in *.mkv; do ffmpeg -hwaccel cuda -hwaccel_output_format cuda -i "$f" -c:v hevc_nvenc -vtag hvc1 -crf 23 -c:a copy -c:s copy -map 0 "${f%.*} HEVC.mkv"; done
+3,
-0
1@@ -0,0 +1,3 @@
2+#!/bin/bash
3+
4+for f in *.cbr; do unar -d "$f"; done
+3,
-0
1@@ -0,0 +1,3 @@
2+#!/bin/bash
3+
4+for i in */; do zip -r "${i%/}.cbz" "$i"; done
+3,
-0
1@@ -0,0 +1,3 @@
2+#!/bin/bash
3+
4+for f in *.mp4; do ffmpeg -i "$f" '%04d.png'; done