8 lines
134 B
Bash
8 lines
134 B
Bash
#!/bin/bash
|
|
clear
|
|
echo "[RUN] FFMpeg Encoder [2024-01-09]"
|
|
|
|
MOVIE=input.mp4
|
|
bash ./ffmpeg.sh ../movies ${MOVIE} ${MOVIE}.encoded.mp4
|
|
|