mirror of
https://github.com/MeexReay/Youtube2Maker.git
synced 2025-05-05 23:58:02 +03:00
9 lines
136 B
Bash
9 lines
136 B
Bash
#!/bin/bash
|
|
|
|
for video_file in videos/*.mp4; do
|
|
base_name=$(basename "$video_file")
|
|
|
|
./nvenc-compress.sh $base_name &
|
|
done
|
|
|
|
wait |