cleaned up unusued stuff

This commit is contained in:
Stefen Auris 2025-08-31 21:20:34 -04:00
parent 126cba9a70
commit 1a61e69fb0
8 changed files with 0 additions and 286 deletions

View file

@ -1,6 +0,0 @@
#!/bin/bash
for i in `fdfind -d=1 --extension=mp4`; do
snap run ffmpeg -hide_banner -hwaccel cuda -hwaccel_output_format cuda -i "$i" -c:a copy -c:v h264_nvenc "${i}_30.mp4"
#safe mode on
#rm --verbose "$i" ; mv --verbose "${i}_30.mp4" "$i"
done

View file

@ -1,7 +0,0 @@
#!/bin/bash
for i in `fdfind video.mp4`; do
snap run ffmpeg -hide_banner -hwaccel cuda -hwaccel_output_format cuda -i "$i" -c:a copy -c:v h264_nvenc "${i}_shrink.mp4"
rm --verbose "$i"
mv --verbose "${i}_shrink.mp4" "$i"
done