mirror of
https://github.com/zebrajr/HomeLab.git
synced 2026-01-15 12:15:06 +00:00
7 lines
388 B
Bash
Executable File
7 lines
388 B
Bash
Executable File
#!/bin/bash
|
|
find /mnt/hdd/DL/DL/Clips/ ! -type d | sort -k 5 > /mnt/hdd/DL/DL/Scripts/files.txt
|
|
sed -i -e "s/mnt/file '\/mnt/gi" /mnt/hdd/DL/DL/Scripts/files.txt
|
|
sed -i -e "s/\/file/file/gi" /mnt/hdd/DL/DL/Scripts/files.txt
|
|
sed -i -e "s/.mkv/.mkv'/gi" /mnt/hdd/DL/DL/Scripts/files.txt
|
|
ffmpeg -f concat -safe 0 -i /mnt/hdd/DL/DL/Scripts/files.txt -c copy /mnt/hdd/DL/DL/Scripts/output.mkv
|