Skip to main content

Remove Empty Music Tracks Created by Media Provider in Dev Tools of Custom Android ROM

For Pros : The solution is to reset the Data of ‘Media Storage’ under App Settings.

For Others : Please tolerate the pain of reading through my post.

I installed CyanogenMod custom ROM in my Sony Ericsson WT19i a couple months ago. Rest of my experience with my phone after that has been simply a honeymoon. Until I messed up with this option called ‘Media Provider’ under ‘Dev Tools’ in CyanogenMod.

Dev Tools - CyanogenMod

Dev Tools - Media Provider - CyanogenMod

Media Provider is used to simulate music tracks in your music player. After tapping the ‘Insert 20 Albums’ it created some 20 tracks (as expected) with satanic Latin names. At that time I had two music players – Apollo and Google Music, both of which reflected these ghostly tracks and often irritated by interrupting the playlist. Every time I had to skip the tracks manually.

Media Provider - CyanogenMod

After a deep web search I found the solution to remove the tracks. You may not find the audio files anywhere in your SD Card (But some people have removed it by deleting files inside a folder called ‘Media’. But lets stick to our method.)

  1. Go to ‘Settings’ in your Android mobile.
  2. Select ‘Apps’ under ‘Settings’.

    Settings - CyanogenMod
  3. Under ‘Apps’ navigate to ‘ALL’ tab (Just Swipe across the Tabs to select ‘ALL’ tab. The interface may vary in other devices / ROMs.)

    Apps - CyanogenModAll Apps - CyanogenMod
  4. Under ‘ALL’ tab select ‘Media Coverage’. It will open the ‘App Info’ screen of ‘Media Coverage’. Now tap the ‘Clear Data’ button to remove those empty tracks created by ‘Media Provider’. Warning : Some Users have reported that this method has reset their custom ringtones and alert tunes for all apps. But I haven't faced that issue.

    Media Storage - CyanogenMod

    Hope this would be useful for you. Your comments will always encourage me to come up with quick guides on common tech issues.

Comments

Popular posts from this blog

How to use JCalendar date picker in your Java Swing Applications with NetBeans

If you are one of those JAVA beginners like me who wants to implement a datepicker module in your experimental/business critical application developed with NetBeans IDE , then this for you. Let me share how I figured out to do so in simple steps with a sample code. Assuming that you have your Java Swing application ready, you will need to download the JCalendar package from here http://www.toedter.com/en/jcalendar/index.html . The page lists out various modules available with descriptions like JDateChooser, JCalendar, JYearChooser, JMonthChooser, JDayChooser, JSpinField and JLocaleChooser. The one I chose for my app was JDateChooser. After downloading and opening the ZIP file, you can see a whole set of files in it. The one we need is in the folder ‘lib’ with the name jcalendar-1.4.jar (this is the latest version while I was writing this). extract that file to your folder of comfort. The jar file you just extracted contains everything you need to implement the date picker in y...

Honda CB Twister India : A Quick Review

I came across a dozen reviews of Honda CB Twister on web and finally decided to buy it. I owned it on last March, 2012. It costed around ₹63,000 with disc brakes, alloy wheels, road tax and stuffs. The reason why I have included ‘India’ in title is because Twister is also available as Honda CB110 in other countries. Here is my short account on my experience with Twister. Mileage Mileage is a very essential part of my riding experience. I travel around 200 Kms every week, so fuel expenses shouldn't make me bankrupt. Twister’s 60 – 65 KmpL mileage is one of the factors that influenced my choice while buying. Anyway in advertisements its claimed to be 70KmpL.   Engine Nowadays its a increasing trend to see Indians going for high end bikes, but in my case I am good with medium performance engines. Twister’s 110CC engine makes riding smooth up to 55Kmph speed, beyond that Honda Twister turns in to a Honda Vibrator. Considering the fact that I’m not an adrenalized rider, ...

How to open a PDF file using ICEpdf Viewer from your Java Application?

Few weeks back I designed an application, where I wanted to display Help content through a PDF file rather than through a textbox in a JPanel, because the help content had complex formula stuffs. So I thought of embedding the PDF file with my swing application itself. But it was too tricky to learn in a short span of time. So I figured out two options to display the help content. By opening the PDF file using a native PDF Reader in the system, on click of the Help Button in my Java Swing application. By opening the PDF file using a PDF reader integrated with my application jar package, on click of the Help Button in my Java Swing application. I dont want to discourage the readers, but to be frank the above two methods didnt work for one bad reason. You need the absolute path of the PDF file to be used in the source code. One solution would be to load a PDF file from a Web link. Another solution would be to use an installation wizard (See here ) for your Java application to plac...