i'm following along this answer: Android- how can I convert android.net.Uri object to java.net.URI object?
android.net.Uri INPUT_FILE;
java.net.URI juri = new java.net.URI(INPUT_FILE.toString());
File inputFile = new File(juri);
I get this error; java.lang.IllegalArgumentException: URI scheme is not "file"
The file is an mp4 inside the android Downloads directory. I'm currently using pixel 2 api 29. Any recommendations on how to fix the problem.