Open nstanger opened 6 years ago
If you do something like process_podcast <whatever> --preview output.mp4, you get a usage error, because it treats output.mp4 as the argument to --preview. This is because the argument of --preview is optional (default 1).
process_podcast <whatever> --preview output.mp4
output.mp4
--preview
If you do something like
process_podcast <whatever> --preview output.mp4
, you get a usage error, because it treatsoutput.mp4
as the argument to--preview
. This is because the argument of--preview
is optional (default 1).