You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I can tell, the Annotation Tool still selects the first track of each flavor regardless of quality. I thought I had patched that, but it turns out I only did that for the SWITCH fork that used the External API. But it shouldn't be too hard to introduce that here as well... My code snippet:
.thenComparingLong(entry -> {
Long width = (Long) entry.getValue().get("width");
Long height = (Long) entry.getValue().get("height");
if (height != null && width != null) {
return width * height;
}
return 0;
})
The text was updated successfully, but these errors were encountered:
As far as I can tell, the Annotation Tool still selects the first track of each flavor regardless of quality. I thought I had patched that, but it turns out I only did that for the SWITCH fork that used the External API. But it shouldn't be too hard to introduce that here as well... My code snippet:
The text was updated successfully, but these errors were encountered: