General :: Galaxy Note I717 / ICS 4.0.4. - Media Scanner Making Duplicate Song Entries
Sep 28, 2012
I used to have a problem with the media scanner making duplicate song entries, only one would play and the other was invalid. For some reason that went away and now it adds media once and never scans again, so if I add songs later they never get picked up to be shown in the music player or winamp etc.
I found these tips:
go to application manager> all application and search
-media storage,
-music player,
-gallery application
and just delete cache and data and restart. It will solve the problem a it force to re build data base
This works still but it is a complete PITA because it resets wallpapers, ringtones and all sorts of other things to default and I don't want to have to do this every time I add a song. How do I fix the media scanner, does it even have logs or something I can look at?
Galaxy Note i717 ICS 4.0.4.
View 1 Replies
Oct 15, 2013
My Galaxy Note SGH-i717 isn't getting recognized by all of my computers running either Windows 7 Ultimate 64-bit or Windows 8 Pro 64-bit.This all started after my dog knocked off the phone with her Chuck Norris-like tail, and it sent the phone to download mode. After I got the phone off Download Mode, the phone sometimes doesn't charge, it keeps on thinking it's connected to a dock or a MHL device, and of course it won't get recognized by a computer. i planned on putting CyanogenMod on it, after I heard that the 4.2.2 rom went to a stabl status, Odin doesn't detect the phone is in Download Mode either.there is absolutely no thread for the SGH-i717.
View 3 Replies
View Related
May 12, 2013
Samsung galaxy note i717. I rooted my phone yesterday as I also updated from 4.0.4 to 4.1.2.
I have SUPER SU, titanium backup, and ROM manager. I understand that all rooted phones must have a SU to grant apps access to the software. As for titanium backup, I have deleted bloatware and backed up and verified all of my information. I also bought the pro version of titanium backup. But for the Rom manager, I'm not too sure how to use that yet. I guess Titanium is for backing up and restoring, and ROM manager is for downloading the new rom?
So you have to download it from the computer, then move to your SD card. Afterwards, the computer part is done right? How do you get the phone in the mode to put in the new rom? And do you have to wipe the stock rom first?
View 3 Replies
View Related
Dec 14, 2012
I'm updating my phone Galaxy note i717 through kies air and my phone is on odin mode and the progess has been stuck at 63% for a while now and I was wondering if it may have bricked my phone.
View 1 Replies
View Related
Apr 12, 2014
I have a galaxy note i717 and it was unplugged while an automated unrooting program (kingo android root) was running. Now the phone is stuck at the "Firmware upgrade encountered an issue" screen, and Kies won't connect to the phone.
Is there anything I can do to get the phone working again?
View 1 Replies
View Related
Jun 1, 2010
Recently my exchange calendar has shown duplicate entries for the items. It started as two entries and now it is three. I have disabled the calendar for a week, but they showed up again after I re-enabled it. I deleted my exchange account on the phone and re-added it - no changes. How to get rid of the duplicates? I don't have an issue deleting the exchange account from my phone and removing any data files - I just need to know what to remove to clean it up - before I re-add the account.
View 2 Replies
View Related
Sep 27, 2010
When I run the following line of code:
MediaScannerConnection scanner = new MediaScannerConnection( this, null );
scanner.connect();
scanner.scanFile( szFinalFileName, null ); //<---crash here
I get a crash and this message in the console window:
09-26 14:47:44.074: ERROR/MediaScannerService(10288): Failed to delete file /data/data/com.android.providers.media/pause_scan
does anyone have any ideas why this isnt working and what i can do to fix it?
View 1 Replies
View Related
Jan 19, 2014
I got a note 2 and a s3, and I would like to do this:
Start song on note 2 -> sound comes out of s3 -> when jack connected in s3, sound comes from my speakers.
View 1 Replies
View Related
Jul 29, 2010
If i edit a contact, it's got like 3 rows of the same info listed, what's the best way to clean this out?
View 4 Replies
View Related
Oct 22, 2010
I just bought the Captivate 2 days ago and this is my first Android phone. I have tried to sync my contacts and FB together (not all of my FB contacts as I have 500+) but just the main people I talk to on a regular basis and it has created duplicate entries in my contact list. I know this not an operating hinderance to the phone but it is just annoying.
What is the point of syncing when it just created more entries? It also has duplicates in the drop down to: part when I create a new text message. Should I take all of my contacts off my SIM and copy them to the phone? Is there a way to have one entry for my contacts including the FB pic? I am importing my contacts from hotmail to gmail now and hoping this might help.
View 1 Replies
View Related
Dec 12, 2009
Has anyone else noticed a problem with Corporate Calendar showing duplicate meeting entries? Everything was fine until my corporate password expired. After I reset my corporate password, changed the Droids corporate mail/calendar password to match and now all of my calendar entries have been duplicated.
View 8 Replies
View Related
Nov 20, 2009
When I had my blackberry, I had google sync and my calendar on my phone synced with google (and vice versa) now I'm on the Hero, I noticed any entry I make on the phone duplicates and appears in my calendar on the phone twice. But entries I make in google calendar only appear once. How do I stop this?
View 2 Replies
View Related
Feb 26, 2010
I've recently got a a Tattoo and it is mostly fine (apart from the ridiculously hard to remove battery cover!). But the thing that is driving me nuts is how unstable HTC Sync is. I have uninstalled, re-installed on the PC and phone and had to delete all contacts on the phone once to "cleanse" and still every time I go to sync my calendar and contacts something goes wrong. Duplicates contacts and calendar entries in the phone and and on my PC! My work phone is windows and active sync is a dream compared to this!
View 1 Replies
View Related
Oct 28, 2009
For my application, I am trying to add entries without having a duplicate entry, and if there are a duplicate notify the user and have him try again. Using SQLite, which I know very very little about, I have tried these two ways and want to know which one is better, more efficient or a better way to develop it? First way:
db.execSQL("INSERT INTO " + DatabaseHelper.DATABASE_TABLE +
"(LATITUDE, LONGITUDE, RATING) SELECT " + latitude + ", " + longitude + ", " + rating +
" WHERE NOT EXISTS (SELECT 1 FROM " + DatabaseHelper.DATABASE_TABLE +
" WHERE LATITUDE = " + latitude + " AND LONGITUDE = " + longitude + ")");
Second way:
long id = -1;
try { id = db.compileStatement(
"SELECT COUNT(*) FROM " + DatabaseHelper.DATABASE_TABLE
+ " WHERE LATITUDE = " + latitude
+ " AND LONGITUDE = " + longitude)
.simpleQueryForLong();
} catch (NullPointerException e) { return -1;
} return id;
The first way, either inserts or ignores the values, I check by doing so, storing the row-count of the rows into a variable before the call, call that function, and then check its results. If the results is not higher than it was before the call, the insert was made ignored, prompt the user with the 'values exist' message. (Very sloppy, I know but desperate times calls for desperate measures). The second way, returns the actual count of rows that match the numbers I want to store, if the number returned greater than 1, prompt the user with the 'values exist' message. I have been going back and forth, trying different ways but I do not know how to set up SQLite to have UNIQUE pairs, which I was told would be the easiest.
View 3 Replies
View Related
Jul 14, 2010
I am sick and tired of deleting duplicate entries in contacts and calendar. There is no rhyme or reason. I get some contacts duplicated numerous times. I get duplicate appointments and my new ones refuse to link to the PC. I have tried everthing that two weeks of constant googling can come up with. I am sooooooo GD sorry that I purchased this POS phone and from my point of view the Android system is also a POS.
Next time I am going to finally bite the bullet and get an iPhone.
If anyone has something new please let me know what to do. I have deleted ALL contacts in Google. I have deleted ALL duplicate contacts at least a dozen times. The stupid system still adds, at random, duplicate contacts and tasks. The stupid phone has even linked contacts with no reason or input from me. The calendar has put holidays in numerous dates. Columbus day was in the calendar seven times when I did the last cleanup (I have done 3 seperate cleanups today alone). Independence day was put on both July 4th and 5th. When I deleted it from the 5th it disappeared altogether. I thought my old Palm Treo was bad.
View 2 Replies
View Related
Jun 9, 2011
And if yes, what is the name of the app/service that I have to freeze using Titanium Backuup?
I have a 8 GB SD Card with only about 550 MB free, and the stupid media service creates 500mb worth of thumbnails and cache. It re-creates it each time I delete the cache. I'm currently running MIUI Gingerbread 2.3.4. Back when I was running CyanogenMod 6.xx I used to simply freeze the Gallery app and that used to solve the issue, but I don't see the gallery app listed in Titanium on the MIUI ROM. Freezing the MIUI Gallery app didn't stop the thumbnail cache creation process.
Creating a .nomedia file in the respective folders isn't an option because I need my photographs (I have about 20k worth of family/spouse pics that I always carry around on my phone in addition to wallpapers etc.) to be visible in Quickpic / Fishbowl photo app etc.
View 5 Replies
View Related
Jun 22, 2012
I am experiencing massive battery drain from *wakelock*/mediaplayer while music playback.
For now, i have tried everything:
- full wipe
- music playback on fresh wiped rom
- formatting sdcard / internal storage
- disabling media server
- debugging with logcat
- ...
Currently, the mediaserver drains more power then any other process, including screen. The phone gets not hot, but warm while only playing music with screen off. That was not happening before, as i listen music daily.
After all, the problem is most likely caused by a corrupt file, but how can i locate this file ? I have 2300 mp3s on my phone, so testing every single one would be a bit complicated...
GT-I9100
View 9 Replies
View Related
Nov 26, 2013
Often your Media scanner can misbehave and eat lot of CPU, Battery un-wantedly.
I had been digging out how to fix it, and here are my solutions. Perhaps try al of them, it would definitely relieve your cpu and battery usage by large. Solution works on any Android version:
Solution 1. Clear media storage data
Settings > applications > Media Storage > clear data, force stop and reboot.
Solution 2. Remove unwanted media files Navigate to /sdcard/DCIM/.thumbnails and delete all files. Repeat for external sd card. On AOSP roms, Android gallery creates too many of thumbnails that later becomes problematic for media scanner.
Solution 3. Analyze and delete excessive media files Find out what files are causing media scanner to go mad. Use any sdcard analyst (I use ES file manager > menu > Sd card analyst) to determine which directory has lots of files/subdirectories inside it. Any directory having >1000 files/folders is an alarmingly high number. Get rid of them (if you can).
Solution 4. Probe and delete bad/damaged media If you're sure you've tried above solutions and still encountering battery drain, its time to dig deeper with developer tools. Pre-requisite: You must be rooted, and have android developer tools (adb) setup. With ADB tools installed, enter shell and acquire su permissions
Code:
adb shell
su
Then run top (linux task manager) to see which process is eating cpu. You can filter top results
Code:
top -grep media
this would give you a result like
Quote:
130|root@n7000:/ # top | grep media
1905 0 10% S 7 23080K 6168K bg media /system/bin/mediaserver
2808 0 40% S 3 3524K 740K media_rw /system/bin/sdcard
2825 0 9% S 19 255832K 43936K bg u0_a5 android.process.media
%age cpu shows media server is eating cpu and needs to be fixed. Run the following command to determine which file is it currently reading
Code:
lsof | grep media_rw
If the media service is stuck at a directory/file for a long time, you know it's a damaged media file, you should get rid of it.
Once you get rid of such files, Its guaranteed media server would finish scanning soon enough.
Solution 5: Format SD cards If nothing works (or you're too lazy of trying solution 4): Take backup and format Internal, external sd card and copy only selective files/folders that you need. Problems would go away for sure.
Solution 6: Disable Media scanner If your Droid is against you and it just won't tame, its time to disable the media scanner. You can do this from adb shell
Code:
pm disable com.android.providers.media/com.android.providers.media.MediaScannerReceiver All Solutions with full detail: Fix Android Media server scanner SDcard CPU, Battery drain
View 6 Replies
View Related
Nov 22, 2012
Have a brand new HTC One X+ (AT&T). Having an issue where after boot and sometimes all of the sudden during the day, the phone gets hot and battery level drops l like ton of bricks. Using Android Task Manager App and enabling monitor of system processes and selecting realtime monitor, I've traced the problems to "android.process.media". This appears to be something to do with Android scanning the device for media files (audio/video/etc) and creating some sort of database. I also usually see the "Music Enhancer" process which has to do with Beats Audio according to HTC (but I have Beats turned off.)
I've seen old threads of people with same problem and in some cases it had to do with a "corrupted" media file and they had to remove all media files and/or factory reset their device. I just spent an entire weekend customizing this device! Plus, how the heck do you prevent yourself from copying the corrupted file over if it was a corrupted mp3 or something?
I'm pretty sure my issue stems from the fact I used my media manager (Media Monkey) to sync over 2,800 audio files to the device. My collection is of high bitrate quality, about 16GB worth of music. I'm pretty sure this is what it is choking on. What I'm not sure of is if the Media Scan the Android device is performing is just a "normal check" for changes/addition/deletions to any of the media files. This of course would take a lot of time and CPU if it has to scan 2,800 files every reboot or periodically. It seems launching Google Play sometimes starts it too as I also sometimes see Google Play Service:Music or something like that (even though I don't stream any of my audio from Google Play.)
View 1 Replies
View Related
Oct 2, 2012
got my BRAND NEW Galaxy S3 yesterday and so far I'm loving it. I'm having the "duplicate contacts" Android problem like a lot of others. I just couldn't seem to get it fixed no matter how much merging, joining, splitting, importing, exporting, manually deleting, etc., so I finally just deleted all my contacts. I deleted ALL OF THEM from the phone. I deleted ALL OF THEM from my gmail account. When I look at the Contacts list in my phone now, they are GONE. No more effing DUPLICATES, right? Wrong. Let's say I want to send a text to someone. I open "messaging" and start typing a name, and lo and behold, a list begins to populate with a bunch of %$#@! duplicate names. WTF do I have to do??? THIS IS A NIGHTMARE that has lost me literally DAYS worth of time trying to figure out. I have sync OFF.
View 3 Replies
View Related
Mar 7, 2013
I've found this annoying bug that makes the media volume go to mute and I'm unable to turn it back on unless I restart. It happens if I have headphones in and go a while without listening to music. It doesn't happen every day but the bug does rear its ugly head at least twice a week.
Having same issue with the S3 and Note 2 or any other phones? Both of them are on at&t, not rooted and have the latest OS updates on it.
View 1 Replies
View Related
Apr 13, 2013
how to avoid the use of expandable memory and rely on cloud-based services to store and stream media?
My main use case is that I like to use my phone as a media / music player for my iTunes library. I also use it for ebooks, audio books and photographs.
In past I've stored this on a micro-sd card, but would like to get away from this as there is a shift away from expandable memory by the hardware manufacturers.
View 2 Replies
View Related
Sep 1, 2010
What is the class name of media scanner service?
View 2 Replies
View Related
Nov 2, 2009
I've already been searching forums and google groups to find out how to force Media Scanner to rescan the sd-card for media files, but with no luck. So after 2 days of searching i decided to post a question here.
In my app i need to rename media files, change their extension, or to reveal them by changing back their extension, but the changes take effect only after i run Media Scanner from the dev-tools, or remount the image, or reboot the phone/emulator. I've tried using MediaScannerConnection, and it only works when revealing media files, but not refreshing the gallery / music player thumbnails which is the biggest problem in my app development right now.
I've also tried copying files and deleting the old ones, but that has no effect also. Does anyone have any experience with this?
View 2 Replies
View Related
Sep 7, 2009
I am trying to open an image edit it and save it back. And i am using the below code, mScanner = new MediaScannerConnection(this, new MediaScannerConnection.MediaScannerConnectionClient() { public void onMediaScannerConnected() { mScanner.scanFile (fileName, null /* mimeType */); }
View 4 Replies
View Related
Nov 2, 2011
how to force media scanner to scan different location other than /mnt/sdcard like /mnt/USB or /mnt/sdcard_2 ..
View 1 Replies
View Related
Sep 17, 2009
I push a audio file named "music.aac" into SD card, and then execute "Media Scanner" application or re-start the device. I found that media scanner didn't process ".aac" file, so the "music.aac" file doesn't exist in music player. But Android supports AAC/AAC+/eAAC format.So who know the reason that the ".aac" file doesn't be processed by media scanner.
View 2 Replies
View Related
Jun 22, 2013
I rooted my galaxy note 2 and updated it to 4.2.2. The problem is I cannot get connected to the internet to download any application from Google Store. I am a first time user and not very familiar with android. My model is GT-N7100 and presently working in Saudi Arabia.
View 1 Replies
View Related
Apr 19, 2013
Sometimes randomly. other times directly after disconnecting it. My phone thinks its either charging or the usb is connected. Plugging it in and out doesnt work, switching it off doesnt work, not even removing the battery. What is this and how can I stop it? Also, i've never upgraded my software, not sure how or if I can.. My girlfriend has an s3 and she keeps telling me how awesome the new software is, yet I've never been able to update mine...
View 1 Replies
View Related
Jan 10, 2014
I changed my passcode last night and can't remember what it is!!! I called Verizon they said after so many failed attempts it will prompt me for my email info. GREAT, but I'm at 150 failed attempts and it hasn't prompted me yet.
View 2 Replies
View Related