mirror of
https://github.com/flavioribeiro/donut.git
synced 2025-10-05 23:16:53 +08:00
13 lines
256 B
Bash
Executable File
13 lines
256 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 ! brew list ffmpeg &>/dev/null; then
|
|
echo "ERROR you must install ffmpeg"
|
|
echo "brew install ffmpeg"
|
|
exit 1
|
|
fi
|