91 questions
0
votes
1
answer
582
views
How to Retrieve Admin and Non-Admin Permissions at Workspace Level in Azure Databricks
I am working on a project to document permissions for both admins and non-admin users across all relevant objects at the workspace level in Azure Databricks (e.g., tables, jobs, clusters, etc.).
I ...
0
votes
0
answers
135
views
How can I use MetaDataExtractor and XmpCore to add keywords to the XMP data in an image
I would like to update/add keywords to the XMP data in image files, mostly JPEGs. I can see how to extract and view the data, but not how to update it. I'm using MetadataExtractor and XmpCore, by Drew ...
0
votes
2
answers
181
views
Getting com.drew.imaging.ImageProcessingException: File format is not supported on MP4, MOV, QT and 3GP video files
Using metadata-extractor-2.19.0.jar, this code:
Metadata metadata = null;
try {
metadata = ImageMetadataReader.readMetadata( pathSourceFile.toFile() );
}
catch(ImageProcessingException ipe) {
...
1
vote
0
answers
489
views
MetaData Extractor - get date field from MOV or JPG
I'm writing something that moves images/videos captured off a camera or smart phone. So there is a mix of .jpg from camera or smartphone, .mov files (iphone movies), .png (screen caps etc).
In the ...
2
votes
1
answer
417
views
Updating image xmp data via xmp-core-dotnet
I'm searching for a way in C# to not only extract XMP data from e.g. an image but also change/ update values and store everything. Right now I have two major problems:
registering new namespaces
...
2
votes
1
answer
137
views
Using Metadata Extractor 2.8.0 to get the PictureControlName for Nikon D600?
Using Metadata Extractor 2.8.0 I'm trying to retrieve the value for the PictureControlName from the makernotes of an image captured with a Nikon D600. The makernotes library seems to only return [58 ...
0
votes
1
answer
406
views
Image metadata extraction using only necessary bytes?
I have a programme that handles thousands of images as well as videos. I want to be able to read date-time metadata from them without having to save the whole image in memory. Currently the images are ...
0
votes
0
answers
40
views
Is there still an Actionscript3 library available that supports XMP Access and/or parses XMP Metadata?
I know there is an Adobe XMP SDK Kit available, but that does not support AS3 any longer.
Some years ago (before Harman took over AS3) Adobe provided the **as3_xmp_file **abd XMPCore.lib
The links ...
0
votes
1
answer
583
views
Trying to extract "DateTimeOriginal" metadata from an image in MM/DD/YYYY HH:MM format
I am trying to extract "DateTimeOriginal" metadata from an image in MM/DD/YYYY HH:MM format, But it isn't working. I tried different approaches but none of them seem to work.
1. Extracting &...
1
vote
1
answer
238
views
Metadata extractor: Is the exif tag 'orientation' respected when calculating image width and height?
I want to use the metadata-extractor Java Library version 2.18 to extract metadata from images. Does the library respect the orientation Exif tag on the calculation of the image width and height of an ...
0
votes
1
answer
147
views
What are other options available to generate DOIs without using extensions in CKAN?
Well, I would like to know if there is any other options that I can use to generate DOIs for all or newly created datasets in CKAN if I am not using ckanext-doi extension. Can someone try to explain ...
0
votes
0
answers
1k
views
Using MetadataExtractor in C# to get IPTC data
I've been struggling with how to get the various fields stored in .jpg and other image formats to store into a database with the record for the image.
I have the database stuff wired and am using ...
1
vote
0
answers
321
views
Can we extract thumbnails embedded in TIFF files with metadata-extractor?
I'm able to use ExifTool to extract an embedded thumbnail jpeg from within a TIFF. Is there a way that I can do this with drew noakes' metadata-extractor?
The source file is here:
https://corpora....
0
votes
1
answer
346
views
How can I modify an XMP meta of a file?
I'm interested in seeing if I can modify some XMP within an image file. I'm using the following code:
var items = MetadataExtractor.ImageMetadataReader.ReadMetadata(_filename);
foreach ...
0
votes
1
answer
2k
views
Extract GPS meta data of a video using C#
I have tried following libraries in c# (.net core)
Media Info
Metadata Extractor
Tag Lib
Media Tool Kit
I wasn't able to retrieve GPS metadata from any of these libraries of a video.
But for an ...