1
1
Fork 0
mirror of https://github.com/tonydamage/nux-env.git synced 2025-12-11 13:24:28 +01:00

Concat is done using copy

This commit is contained in:
Tony Tkáčik 2025-07-05 18:35:58 +02:00
parent 883e44f0b0
commit bd6e1d49b2

View file

@ -384,7 +384,7 @@ function target.from image qualifier extension {
for video in "$@"; do
echo "file" "'$(realpath "$video")'" >> "$tmp";
done
ffmpeg -y -f concat -safe 0 -i "$tmp" "$target" &> /dev/null
ffmpeg -y -f concat -safe 0 -i "$tmp" -c copy "$target" &> /dev/null
nux.fs.info "$target" "Created from '$@'"
if [ -e "$tmp" ]; then
rm -v "$tmp"