diff --git a/process_podcast.py b/process_podcast.py index cf61f81..84b21fc 100755 --- a/process_podcast.py +++ b/process_podcast.py @@ -309,7 +309,8 @@ frame_segments = [s for s in segments if isinstance(s, FrameSegment)] n = len(frame_segments) globals.log.debug("{fn}(): num frames = {n}".format(fn=fn, n=n)) - progress = ProgressBar(max_value=n, quiet=args.quiet or args.debug) + progress = ProgressBar(max_value=n, + quiet=args.quiet or args.debug or n == 0) for i, f in enumerate(frame_segments): progress.update(i) globals.log.debug("{fn}(): frame (before) = {b}".format(fn=fn, b=f))