mirror of
https://github.com/flavioribeiro/donut.git
synced 2025-10-19 05:04:39 +08:00
13 lines
246 B
Bash
Executable File
13 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
if ! brew list srt &>/dev/null; then
|
|
echo "ERROR you must install srt"
|
|
echo "brew install srt"
|
|
exit 1
|
|
fi
|
|
|
|
if ! ls tmp &>/dev/null; then
|
|
echo "ERROR you must install ffmpeg"
|
|
echo "make install-ffmpeg"
|
|
exit 1
|
|
fi
|