mirror of
https://github.com/anatolykopyl/tt-compiler.git
synced 2026-03-26 13:14:32 +00:00
8 lines
142 B
Bash
Executable File
8 lines
142 B
Bash
Executable File
#!/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
|