Initial commit

This commit is contained in:
2021-11-02 12:53:26 +03:00
commit e23c6d4791
8 changed files with 204 additions and 0 deletions

7
concat.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
cd trend &&
find *.mp4 |
sed 's:\ :\\\ :g'|
sed 's/^/file /' > fl.txt;
ffmpeg -f concat -i fl.txt -c copy video.mp4;
rm fl.txt