Hello. When I try to create a video with "Döme" in the title for instance, I get back HTTP 400. Does the library encode anything when making the requests to Vimeo or am I responsible for that? I am using the following code:
File tempFile = tempPath.toFile();
String name = metadata.getTitle();
Map<String, String> privacy = Map.of(
"view", "unlisted"
);
String videoUri;
try {
videoUri = vimeo.addVideo(tempFile, name, privacy);
} catch (IOException | VimeoException e) {
String message = "Failed to upload video to Vimeo";
throw new ProcessingException(message, e);
}