Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug: Fix audio file with cover image treated as video file #91

Prev Previous commit
Next Next commit
remove throw call
  • Loading branch information
Rushi1109 committed Jan 2, 2025
commit 5462260f00ca47555de16eeaa0b2dd66fecd09be
2 changes: 0 additions & 2 deletions MediaProcessor/src/Engine.cpp
Original file line number Diff line number Diff line change
@@ -81,8 +81,6 @@ MediaType Engine::getMediaType() const {
return MediaType::Video;
} else if (hasValidAudioStream(stream)) {
hasAudioStream = true;
} else {
throw std::runtime_error("Unsupported media type detected.");
}
}