diff --git a/process_podcast.py b/process_podcast.py index c1964c0..d072fb1 100755 --- a/process_podcast.py +++ b/process_podcast.py @@ -327,7 +327,9 @@ globals.log.info("Processing frames...") frame_segments = [s for s in segments if isinstance(s, FrameSegment)] n = len(frame_segments) - progress = ProgressBar(max_value=n, quiet=args.quiet or args.debug) + globals.log.debug("{fn}(): num frames = {n}".format(fn=fn, n=n)) + 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))