Skip to main content

How to play Sinhala subtitles(or any other custom fonts) using MX Player on any Android device

Do you know that you can play sinhala subtitles on your android device using MX player even though the device doesn't support sinhala rendering. Just a simple procedure.
  1. Download Sinhala font from here.
  2. Move it to a new folder in the SD card. 
  3. Go to Settings - > Subtitle -> Subtitle folder in MX player and select the folder where you copied the downloaded font. 
  4. Play the video with sinhala subtitles.
  5. Now in video playback window go to menu options and select Subtitle -> Open. Then select the subtitle file(.srt) from the SD card.
That's all. Enjoy watching the movie. You can play any language using the appropriate font file by following this method. 

Comments

  1. Friend...is this trick support for km player?

    ReplyDelete
  2. I haven't tried bro. If KM player supports to set custom subtitles most probably this will work. You can try.. Don't forget to share the results here... :)

    ReplyDelete
  3. This comment has been removed by a blog administrator.

    ReplyDelete

Post a Comment

Popular posts from this blog

Extend internal memory of any Android device (Root Needed)

Low internal memory is a very common problem between low end android devices. Today most of android devices have both more than enough processing power and RAM size. But the internal memory size is relatively low. Due to low internal memory, we can't install many apps and most of the times sync stops working. Two most popular solutions to low internal memory problem. Link2SD Drawback - Slow down the device vold.fstab method Risk of bricking the phone. Need the appropriate vold.fstab for the device. I'm going to tell you a different method. In this method the SD card is joined to the end of the internal memory. If the internal memory is not enough, then the SD card will be used instead of the internal memory.  I installed NFS Most Wanted and NFS No Limits on a Xpeia E3 Dual after extending the internal memory using this methods. (Xperia E3 Dual has a internal memory of 1.7 GB)

Java Singletons using enum type (The best method for making Singletons in Java)

Singleton is a class that suppose to have only one instance per JVM. Same instance of the singleton class is reused by multiple threads. Most often we use singletons to represent system configurations, window managers like resource since those instances should be common to all threads and objects within a JVM.