Android Forced Hardware Acceleration disables embebbed subtiles
Posted: 20 Oct 2015 00:34
Hi guys, im working with libvlc 1.6.4 on android. If I do this..
I lose subtitles but if i do this..
I get the embebbed subtitles automatically shown in the video. Do you know if this is a bug or if theres a work around. I really need the forced hardware acceleartion so I need both booleans. Im working with a firestick and the only way I could get 100% speed without lagging or glitches is forcing hardware acceleration.
Thanks!
Code: Select all
Media m = new Media(libvlc, myUri);
m.setHWDecoderEnabled(true, true);
Code: Select all
Media m = new Media(libvlc, myUri);
m.setHWDecoderEnabled(true, false);
Thanks!