Override video_stitcher_v1::VideoStitcherServiceClient Authentication Defaults

  [](std::string const& keyfile) {
    auto is = std::ifstream(keyfile);
    is.exceptions(std::ios::badbit);  // Minimal error handling in examples
    auto contents = std::string(std::istreambuf_iterator<char>(is.rdbuf()), {});
    auto options =
        google::cloud::Options{}.set<google::cloud::UnifiedCredentialsOption>(
            google::cloud::MakeServiceAccountCredentials(contents));
    return google::cloud::video_stitcher_v1::VideoStitcherServiceClient(
        google::cloud::video_stitcher_v1::MakeVideoStitcherServiceConnection(
            options));
  }