Skip to content

Commit

Permalink
try parse without section filter
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekatica committed Apr 23, 2024
1 parent 6ea378d commit cce0c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subtitleparser/subtitle_parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func ExtractSubtitleInfo(filepath string) (map[int64]SubtitleTrack, error) {
Subtitles: make(map[int64]SubtitleTrack),
}
glog.V(4).Info("Parsing sub tracks from mkv")
err := mkvparse.ParseSections(file, &h, mkvparse.TracksElement)
err := mkvparse.Parse(file, &h)
if err != nil {
glog.Error(err)
}
Expand Down

0 comments on commit cce0c0f

Please sign in to comment.