Netflix / photon

Photon is a Java implementation of the Interoperable Master Format (IMF) standard. IMF is a SMPTE standard whose core constraints are defined in the specification st2067-2:2013
Apache License 2.0
234 stars 76 forks source link

Windows build error #313

Closed palemieux closed 2 years ago

palemieux commented 2 years ago

On Windows 10, the following build error is reported:

HeaderPartition.java:1210: error: unmappable character for encoding Cp1252
        L Γå? Empty list that will contain the sorted nodes

Maybe need the following in build.gradle:

javadoc {
    options.encoding = 'UTF-8'
}

compileJava {
    options.encoding = 'UTF-8'
} 
marcrleonard commented 2 years ago

I can confirm this works for me. I was running into the same issue.