Can I force all uploaded images to be reduced in quality?

Yes, there is actually a filter hook to change JPEG compression ratio. You could add these lines to your functions.php:

add_filter( 'jpeg_quality', 'jpeg_custom_quality' );
function jpeg_custom_quality( $quality ) {
    return 70;
}

You may change 70 to whatever value you want.