Quentin Renard
Quentin Renard
Closing this issue, but feel free to reopen it if needed 👍
I've the feeling that adding a `Language` attribute to [Item](https://github.com/asticode/go-astisub/blob/master/subtitles.go#L114) would do the trick but I may be missing something 🤔 On reading the ttml, language attribute should of an...
> If we want to fix it, we will break the Subtitles object structures and affect user of this library, they need to change their code to adapt with new...
Mmm I've no idea, I don't use any type generator
From what I understand, there are 2 problems you're trying to fix: 1) handle `\r` 2) handle optional data after `WEBVTT` keyword Regarding 1), implementing a custom `bufio.SplitFunc` capable of...
You're right, for this to work we would need to add a `Comments []string` attribute to the [Subtitles](https://github.com/asticode/go-astisub/blob/master/subtitles.go#L98) struct, set it properly when reading the webvtt and write it properly...
Could you share the content of you `bootstrap.Options{}`? Also could you tell me whether `resources/static/vue-igopher/dist` exists in the path of you Go project?
Indeed it looks like it could be linked to the size of the frame changing 🤔 Basically, the problem is that the size computed [here](https://github.com/asticode/go-astiav/blob/master/frame_data.go#L200) is incorrect, and therefore when...
Thing is normally the size change should be properly handled by your code since the frame is unrefed and you create a new FrameData struct everytime, my fear is that...
Could you try replacing ```go image, err := f.Data().GuessImageFormat() if err != nil { return } err = f.Data().ToImage(image) if err != nil { return } ``` with ```go _,...