Esmin Gracić
Results
2
comments of
Esmin Gracić
Warning: I know very basic python(3) I think the simplest solution would be: `inputSubtitles.decode('codec').encode('utf8') ` and process further - as vtt must be utf8 this will also solve UnicodeDecodeError issues...
Yes, It is possible. ```java public static Object partialHelper(String partialPath, Options options) throws IOException { Template t = //get Template via loader using partialPath return new Handlebars.SafeString(t.apply(options.context.combine(options.hash))); } ``` SafeString...