Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions qtfaststart/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@ def process(infilename, outfilename, limit=float('inf'), to_end=False,

if offset == 0:
# No free atoms to process and moov is correct, we are done!
msg = "This file appears to already be setup!"
msg = "This file appears to be already optimised for streaming. Nothing to do."
log.error(msg)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Info log level should be enough in this case.

Suggested change
log.error(msg)
log.info(msg)

raise FastStartSetupError(msg)
return

# Check for compressed moov atom
is_compressed = _moov_is_compressed(datastream, moov_atom)
Expand Down