Compare commits
3 Commits
6141e1c8eb
...
9d9f5d34f8
Author | SHA1 | Date | |
---|---|---|---|
9d9f5d34f8 | |||
3ecbc3af7f | |||
faa1bf99ed |
19
bash/bypasstrash.sh
Executable file
19
bash/bypasstrash.sh
Executable file
@ -0,0 +1,19 @@
|
||||
#/bin/bash
|
||||
#thanks, bewilderex63. https://unix.stackexchange.com/questions/51840/how-to-disable-trash-can-in-thunar-xfce
|
||||
|
||||
# Once at the start for good measure
|
||||
rm -rf .local/share/Trash/files/*
|
||||
|
||||
while [ true ]
|
||||
do
|
||||
inotifywait ~/.local/share/Trash/files
|
||||
|
||||
# Don't get stuck in a CPU-melting loop if something goes wrong
|
||||
if [ $? -ne 0 ]
|
||||
then
|
||||
exit $?
|
||||
fi
|
||||
|
||||
# Good riddance
|
||||
rm -rf .local/share/Trash/files/*
|
||||
done
|
22
bash/channelArchive.sh
Executable file
22
bash/channelArchive.sh
Executable file
@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
|
||||
. /etc/profile
|
||||
. ~/.bashrc
|
||||
|
||||
function ytdlp(){
|
||||
sponsorblock=""
|
||||
if [ $4 -eq 1 ]
|
||||
then
|
||||
sponsorblock="--no-sponsorblock"
|
||||
fi
|
||||
pushd "$1"
|
||||
|
||||
yt-dlp --output "%(upload_date)s - %(title)s - [%(id)s].%(ext)s" \
|
||||
--format "[ext=mp4]+ba/best" \
|
||||
--download-archive "done.txt" \
|
||||
--min-sleep-interval 0 --max-sleep-interval 10 \
|
||||
$sponsorblock \
|
||||
--exec "vidpath=\$(basename {}); vidpath=\$(echo \$vidpath | sed 's/^[0-9]\{8\} - //' | sed 's/- \[[a-zA-Z0-9]\+\]\.mp4//'); textmsg=\"archived video from $2: \$vidpath\"; /home/adam/bin/miscChat.sh \"\$textmsg\";" \
|
||||
$3
|
||||
popd
|
||||
}
|
@ -13,6 +13,11 @@ do
|
||||
ffmpeg -i "$file" "$file.mp4"
|
||||
#rm "$file"
|
||||
done
|
||||
for file in *.mkv
|
||||
do
|
||||
ffmpeg -i "$file" "$file.mp4"
|
||||
#rm "$file"
|
||||
done
|
||||
|
||||
if [ $(wc -l < "$@") -eq $(wc -l < done.txt) ]
|
||||
then
|
||||
|
Loading…
Reference in New Issue
Block a user