Makes the codec dvd_subtitle be recognized as an image subtitle
All checks were successful
KnarCraft/FFmpegConvert/pipeline/head This commit looks good
All checks were successful
KnarCraft/FFmpegConvert/pipeline/head This commit looks good
This commit is contained in:
parent
87d17825aa
commit
9f96c84b9e
@ -73,7 +73,8 @@ public class SubtitleStream extends AbstractStream implements StreamObject {
|
||||
* @return <p>True if the subtitle is image based.</p>
|
||||
*/
|
||||
private boolean isImageSubtitle() {
|
||||
return codecName != null && getCodecName().equals("hdmv_pgs_subtitle");
|
||||
return codecName != null && (getCodecName().equals("hdmv_pgs_subtitle")
|
||||
|| getCodecName().equals("dvd_subtitle"));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user