Stock camera - Picture metadata edit error 0x88982F52 - Huawei P10 Questions & Answers

Hi, I have a problem with editing metadata in Windows 10 (updated).
When I try to save for example edited rating on picture in File Explorer I get error message "Error 0x88982F52: There is too much metadata to be written to the bitmap."
I don't have problem with every picture taken by P10 stock camera, just about 1/3 of them.
Does anybody have same problem?
Is it bug in stock camera app?
--update
And ExifToolGUI also shows warning to all pictures taken by P10:
Warning: [minor] Unrecognized MakerNotes
Click to expand...
Click to collapse

Related

[Q] Cannot take photos

Hi,
my diamond cannot take picture through camera application.
the picture is taken, but when diamond try to save the picture on my default picture folder, the waiting cursor pop up and remains until i close the application ...
I suppose that the problem is linked with "album cache" file :
i have moved several pictures from the default folder to another one (because there was too much files to be displayed in the same folder).
unfortunatly, i have deleted this file (album cache) ; since i cannot trake picture (when diamond try to save the picture taken , waiting cursor).
i've tried to put album cache file in the defalut directory from an old backup but it didn't solve this issue.
someone know how to fix this (edit the album cache file ?)
i want to avoid a full reinstall ...
thx in advance 4 ur help and sry for my bad english - i hope you have understand well -
Hello guy,
i have had the same problem after flashing an new rom from o2.
I have flashed it again and then i could take fotos again.

[Q] Unable to add photos to contacts

Hi,
I'm a Android newbie. I recently got a Samsung Captivate (default f/w version: I897UCJH7), which I upgraded to Froyo (I897UCJI6) and rooted etc. I also deleted a bunch of stock apps.
The problem: when I try to add a photo to a contact, it fails. When I go from Contacts->Edit-> (click on photo icon) -> Select Photo -> Album - it always says: 'No pictures are available on the phone.' I have photos taken with the phone that are in /sdcard/DCIM/Camera. I also tried with external photos copied into that folder. Not sure if this worked out of the box/prior to all the hacks.
Also, when I go the other way - click the camera app, pick an existing photo and say 'Set As' -> and pick a contact -> it crashes (vibrates) and then throws up this message: 'The process android.process.acore has stopped unexpectedly. Please try again.' This definitely worked out of the box (prior to the upgrade/rooting).
What's wrong - is this a result of the upgrade/loss of some apps? :-( How can I fix it? Any help appreciated. Thanks in advance.
balajisv said:
Hi,
I'm a Android newbie. I recently got a Samsung Captivate (default f/w version: I897UCJH7), which I upgraded to Froyo (I897UCJI6) and rooted etc. I also deleted a bunch of stock apps.
The problem: when I try to add a photo to a contact, it fails. When I go from Contacts->Edit-> (click on photo icon) -> Select Photo -> Album - it always says: 'No pictures are available on the phone.' I have photos taken with the phone that are in /sdcard/DCIM/Camera. I also tried with external photos copied into that folder. Not sure if this worked out of the box/prior to all the hacks.
Also, when I go the other way - click the camera app, pick an existing photo and say 'Set As' -> and pick a contact -> it crashes (vibrates) and then throws up this message: 'The process android.process.acore has stopped unexpectedly. Please try again.' This definitely worked out of the box (prior to the upgrade/rooting).
What's wrong - is this a result of the upgrade/loss of some apps? :-( How can I fix it? Any help appreciated. Thanks in advance.
Click to expand...
Click to collapse
If you have installed the leaked froyo, that has some problems that come along with it. Personally, I have not flashed the leaked froyo bare version so I would not know. I recommened flashing cognition 2.3b6 because it is based on the captivate froyo leak and it is very stable.

Lost camera pics and videos

I tried to install other camera apps to try the quality
Badly, I didn't backup my pics and videos
And the installed camera app replaced the stock Camera folder and i lost all
Tried to recover the pics on PC, pics are recovered, but they are not opening, (corrupted)
Any solution is welcome (read briefly before giving solution)
I recovered files, but unable to open
(plz see the attachment file here I am attaching)
If you could success on seeing image the attachment, plz tell me the process how to repair it.
sorry, even uploading attachment is showing error, so plz follow link (http://www.mediafire.com/view/?5ut5ohcwua37aep)
Which software did you use to recover pics?

[Q] GetFilesAsync() in chunks?

Is there a way to split Files from GetFilesAsync in chunks? The problem on low memory devices is a "out of memory exception", when reading many files from StorageFolder (100+).
andy123456 said:
Is there a way to split Files from GetFilesAsync in chunks? The problem on low memory devices is a "out of memory exception", when reading many files from StorageFolder (100+).
Click to expand...
Click to collapse
when you try to get file names in a string and show in a messagebox
I think it will have no errors.
if you get error again i don't know what to do .
but if you didn't get error it means your code has problem .
maybe better to use ListBox to make large lists .
My code to read the files is simple:
Code:
StorageFolder cameraRollFolder = KnownFolders.CameraRoll;
IReadOnlyList<StorageFile> cameraRollFiles = await cameraRollFolder.GetFilesAsync();
But i dont need the file names only, with cameraRollFiles i then process further.
andy123456 said:
My code to read the files is simple:
Code:
StorageFolder cameraRollFolder = KnownFolders.CameraRoll;
IReadOnlyList<StorageFile> cameraRollFiles = await cameraRollFolder.GetFilesAsync();
But i dont need the file names only, with cameraRollFiles i then process further.
Click to expand...
Click to collapse
I know you don't need only FileNames .
with these 2 lines only you will get out of memory error , yes ?
I think the problem is there on one of the two lines. After i get the files async, im performing an upload operation withTransferContentPart. I dont know exactly where the error occurs, but i think its there, because StorageFile has all files read async and this is loaded in memory, or do i missu derstand that? The maximum amount of files, without exception, is 120 files. Do i get more files, the exception was thrown. The size of the files are 19kb (testimages from wp8.1 emulator). The size isnt a problem, i proceed this with a 1GB file, without any problem.
andy123456 said:
I think the problem is there on one of the two lines. After i get the files async, im performing an upload operation withTransferContentPart. I dont know exactly where the error occurs, but i think its there, because StorageFile has all files read async and this is loaded in memory, or do i missu derstand that? The maximum amount of files, without exception, is 120 files. Do i get more files, the exception was thrown. The size of the files are 19kb (testimages from wp8.1 emulator). The size isnt a problem, i proceed this with a 1GB file, without any problem.
Click to expand...
Click to collapse
select the first line of your code and then press F9 on your keyboard .
then you will see Yellow lines while Debugging lines of code .
you have to click continue key or press F10 key to see where the error will appear .
another way ( a silly way ) is to set try {} and catch {} for each line and set catch to message you Error Line and for example Loop Counter and etc.
Ok this error happens on my uploadoperation, exactly on
upload.StartAsync();
But only with many files in the camera roll.
andy123456 said:
Ok this error happens on my uploadoperation, exactly on
upload.StartAsync();
But only with many files in the camera roll.
Click to expand...
Click to collapse
I don't know about Upload Method
sorry
The code is performing in a baclground task, can this be the problem?
I rechecked that and its definitely not the GetFilesAsync() from StorageFile. The problem seems to be the BackgroundTrasnferContentPart, which seems to load all Files in Memory and causes the OutOfMemory Exception.
Any suggestions how to solve this problem?

Unable to access internal storage

Hello,
I am having problems with the internal storage of my phone... Basically nothing can access the internal storage, me or any other app
My phone is Bootloader locked, and i have the Dstrike Kai custom ROM which is pre-rooted
I had the ROM installed for at least a year and the problem didn't appear until a few days ago
All the files that I had on the phone until now, I can still read them, such as photos or PDFs, but if I try to see the file on the phone with an file manager, it says that the "folder" of the internal storage is empty... I tried multiple file managers from google play, and even one with root access, still "empty"
And I can't create new files... Every application that requires to create a file gives the error "Failed to create" or "File not found (/storage/emulated/0/......)"
Or take photos or videos... for them i use the stock application, when taking a photo, the preview photo appears, but in the recent photo slot, the picture loads for 2-4 sec and them the application crashes without saving the photo and for videos I get the error "Either the camera or flashlight may be in use by another application. Please close the other application and try again." (which is weird , i get it even after soft reset, the button under sim cover)
And downloading with any browser is impossible, it goes in pause mode immediately as i start the download and i can't resume it
Anyone has any idea how I can fix it? I was thinking of flashing an other ROM but I am scared it won't recognize my storage after it and become a "brick"

Categories

Resources