-
Notifications
You must be signed in to change notification settings - Fork 58
Use EXIF taken date as sorting date for photos [$200] #40
Comments
Agreed, but for this to work well, data should be extracted and indexed in the DB at upload time, otherwise it will slow down all operations since each file would have to be opened before we're able to get the list of files. |
From @jancborchardt on July 20, 2015 17:26 Maybe this is something for core then? The sorting should be right in the Files app already as well. cc @schiesbn @DeepDiver1975 |
Yes, I think the upload mechanism could do with adding more data to the FileInfo object attached to each file (dimensions, exif data object), but I'm not sure the Files app would benefit from it, even in thumbnails view. That kind of sorting works best for media files. Also, I want to add the possibility of letting users add the missing data to other files so that they can mix PSD and JPEG files per example, but I'm not sure it's something people are going to do often (both adding data and mixing content). A first step could be to introduce another of those settings which lets users who need the feature enable it despite the slowdowns. That way, it wouldn't affect the app for all the other users. |
From @patman15 on September 21, 2015 19:55 I just made in one evening a prototype implementation on v14.0.0 that adds the exif time to the file properties and allows sorting. Since I'm new to owncloud and galleryplus, I'm pretty sure it's not the best, but it works. Also I read using the file system might slow things down. Nevertheless, if there is interest, I could provide the patch. |
From @jancborchardt on September 22, 2015 7:58 @patman15 hey, cool! :) Of course there’s interest – it would be very nice if you can open a pull request here with the patch. |
@patman15 - Thanks for your work :). Please submit a PR and we'll know more about what you've done. The actual EXIF parsing code is not really the problem here, but the fact that not all images contain that information and that if we don't store it, then we need to parse the files every time and it will be very slow for external storages. Without a new sorting button (!), the sort by date button will mix together different types of information. We need to think about the best solution for users here. The behaviour needs to be predictable. |
From @patman15 on September 22, 2015 14:21 Ok, sure I'll submit a PR soon. Button is drawn and added, logic is enhanced from two to three sort types. I'm still thinking about how to handle files without EXIF. Either use the modification time as fallback for those cases or for the complete album or disable the button if not all files are with EXIF. Regarding speed: I read about the issue before I started. Since I'm new to OC programming I couldn't figure out yet where file (content) is actually accessed. Thumbnail generation might be one good point to add the parsing. Currently, I put it into the searchmediaserivce.php and there is still an enhancement by switching to stream access. Nevertheless, yes, it loads every time you open the folder. |
Yes and that's done in
I'm in favour of the 2nd option as it offers much more flexibility and zero dependency on Then in Gallery, we could have an ExifService (or use the one in the Exif app even if it's frown upon) which would collect the needed information. |
From @patman15 on September 23, 2015 12:30 @oparoz So, PR is there, if you want to have a look. I still have to fix a few issues to increase quality. I just tested performance on a directory with only jpg images (worst case as other mime types do not impact performance). On the directory containing 1429 images my (very small home) server took 3.9s for scanning while the patch increases the time to 6.4s (+64%). I still have a few performance increasing options available, but it won't help too much. Nevertheless, I'm quite happy with it for my personal use case. If you could give me some more infos on how your second option should look like or whether I should try to extend the core, I would be happy to invest some more time. Just let me know if I should finalize the current patch as an intermediate solution or directly focus on a more mature solution. |
Regarding performance, it would be good to time a few test cases, so that we can use it in the documentation, but that's only relevant if we don't store the information in the DB, so let's look at that first :) Exif appRequirements
Implementation
I can definitely help you with setting things up. We just have to think hard to decide if an Exif apps would be useful to others, because otherwise, there is little point in keeping the functionality outside of the app. |
From @patman15 on September 23, 2015 20:57 I checked for apps that could use it as well. I only found
So basically put photos on a map or different galleries. Also when thinking about which apps (e.g. on Android) use EXIF it is mostly for rotating or displaying on a map (which could be part of gallery as well) Not sure it's worth the effort to make a separate app in the first run, but for sure you have more experience. My guess is to go for a service and if it's really demanded by/interesting for others we could still move it to a separate app. What do you think? |
I was about to ask on the mailing list, but I agree. If there is demand for it, it will be straightforward to re-package the service. People will be looking for a migration path and you can decide then if you want to offer/sell one. So, let's talk about architecture. I think it would be good to implement this as a part of owncloud/gallery#101 So maybe we should have a MetaDataService and a folder (like preview or config) containing various parsers/writers and we would start with the ExifParser Class? The database classes are described in #101 and you can use Activity as an example of how to use hooks. It creates untestable code unfortunately, but that would be the quickest way to get started and we can improve on that later. |
From @patman15 on September 24, 2015 9:0 I did a bit of research how EXIF information is handled in other viewers. The most general approach -- which is used in some famous viewers -- is to sort files with EXIF and files without in separate blocks. Then there is sometimes an option to use modification date as fall back (default disabled). I like this quite a lot as we would not need an additional sorting button but, unlike in my pull request. @oparoz To summarize: Exif appRequirements
Implementation
Next steps
Sounds like a (reasonable) plan? |
I think this is going to be a barrier, because it requires making big changes to the photowall to make it usable. People won't know there are more images much lower in the wall, in another block.
That could be very messy, with big blocks of pictures with exif data, in the middle of the rest of the pictures, unless people carefully curate their collections.
Yes. That could help us get some feedback. I'm not sure Gallery wants patches, so maybe keep this in Gallery+? @jancborchardt @karlitschek
I'd say, let's use your fresh stock of energy to get the service built first and we'll see about the app when that's done :)
Cool. I'll move the specs over to #101, since this is the way forward. |
From @deMattin on September 24, 2015 10:48 I'm the same opinion as @oparoz not to give an automatic date sorting on files date or exif date. So sorting on Exif data should always be an additional option. |
From @patman15 on September 24, 2015 11:4 Well, we can keep a separate button (I'm happy with that) nevertheless we need to define what should happen if you choose Exif sorting and the information is partly missing. Maybe @oparoz you got me wrong, the current tools do sort all files without Exif info by modification time first and then all with exif information by this date. It's not perfect but if you choose the fall back it's like you said somehow mixed. |
Agreed :) |
From @rhatguy on September 24, 2015 13:30 I'm more than thrilled to see the progress being made here. I wanted to throw out one use case in case you guys hadn't thought of it yet. I upload my pictures into a folder that is an external storage mountpoint in owncloud. Then sometime later (maybe years) I may go back and add further exif information (GPS coordinates...facetags..etc). It would be good for the implementation to have some way to trigger a re-scan of the exif data in case the files are updated outside of ownclouds control. I can understand though if the final answer is "the files should be under owncloud control" :) I'm willing to help if testing is needed. I have a 27k file picture repository with pics and videos. |
@rhatguy - That could be solved:
I think solution 1 is not good enough and solution 2 will take a while since we still don't have settings in the app. |
From @patman15 on September 24, 2015 16:53 Trying to get familiar with owncloud concepts ... @oparoz Just thinking (maybe too) loud: if we talk about "meta data support" we need parsers for different types. Looking through the thumbnail service in core I can find excellent patterns, we would need/should use as well:
I know we discussed two days ago that this is the ideal point. Looking at the requirements #101 it's more or less duplicating thumbnail generation, name it meta data generation, and replace a bit of logic in the individual providers for the mime types. Further, meta data might be relevant also for non images, e.g. PDFs where you have author, ... Just want to clarify before I start which patterns to use. I can of course skip the provider concept and just use a switch statement for the types and more or less put all logic into one "metadataservice". So shouldn't we somehow reduce the scope (not metadata but image properties or so) or really go for a core extension? If (both) not, can someone give me guidance on which patterns are worth the effort for the intended functionality? |
@patman15 - I'm guessing you're making reference to the Preview Class? If I understand you correctly, you'd rather add a metaData() method to each preview provider, collecting the information and returning it, ready to be added to the database by the Preview class? One problem is that the preview system can be disabled. That would stop all meta data collection.
Using that app means that you won't be able to start development until next year, at the earliest, but it means that all the data collected would be made available via WebDAV. Hacking the preview class is not a bad idea, but beware. It's a dinosaur pining to be refactored. If you think it makes more sense, go for it. Just open an issue in The smaller project is, of course, to start here, focusing on media meta data, probably duplicating some of the patterns put in place in |
From @patman15 on September 25, 2015 6:3 @oparoz Thanks a lot for the overview, I think I got an impression about the surrounding problems.
Yes, I was browsing around there. :-) I'll do something that can be made available earlier than one year but with concepts that can survive longer. Hopefully I can spend enough time. Let's start. Thanks again! |
From @jancborchardt on September 25, 2015 20:42 @oparoz @patman15 pull requests should always go to the original Gallery, never to a fork. Period. cc @karlitschek @DeepDiver1975 |
If the feature is intended for Gallery, yes. It makes things easier from a legal and organisational point of view. |
From @patman15 on September 27, 2015 7:36 I did some more research and also performance tests. Here is a short summary of the three options I found:
*) example: 1420 JPG files on local storage, initial scan My suggestion would be to go with exiftool (can produce php, xml, or json output directly) and use exif_read_data as fall back. Exiftool can be run as a separate process in batch mode, so it has low overhead. @oparoz, @jancborchardt are you ok with the additional dependency for exiftool? It would save a huge implementation effort regarding all the file types, etc. Any other thoughts? |
I'm OK with using exiftool with a exif_*_data fallback. I'm not worried about the overhead since we should really only collect the data at upload time and provide a separate scanner for existing files. Regarding external storage, the files are already transferred locally in order to create the preview. If the hook gives us access to that local representation, then there shouldn't be any problem. If it gives us a "link" to the external file, then it will be difficult to stream the data if I'm not mistaken as not all backends support it. |
Also, for performance reasons, I would use |
From @patman15 on September 27, 2015 16:32
Yes, I did, but then I thought of KISS (keep it simple stupid). The library does a lot of type conversion and is dependent on the version of exiftool. Most things we do not need (including tag writing). And:
So I thought more about using something like https://github.com/tsmgeek/ExifTool_PHP_Stayopen or even better take the ideas and build my own class with the functionality we need here. |
Fine by me :) |
From @patman15 on November 19, 2015 19:43 Sorry, currently I'm pretty busy with my normal job so implementation is still not progressing. :-( |
No problem. One thing that would be great, if you can, is to have some sort of roadmap for your project so that we can know a bit more about it and where you're at. It could be that some part can be implemented earlier and beneficial to other items. |
From @jancborchardt on July 20, 2015 17:2
Use-case: Doing a trip with friends and multiple people take photos. Afterwards when you move them all in the same folder from the different devices, the sorting is off. It’s not based off the EXIF date but instead the modified date.
We should sort photos where there is an EXIF date present by that date. @oparoz
Ref owncloud/gallery#101
Pre-requirements
There is a $200 open bounty on this issue. Add to the bounty at Bountysource.
Copied from original issue: owncloud/gallery#221
The text was updated successfully, but these errors were encountered: