Metadata files in java

Extract RIFF INFO and Metadata of WAV files in Java

RIFF file container format used to store audio and video multimedia. This data stored in chunks can include lots of information such as the creation date, copyright information, artists, comments, etc. You can programmatically manipulate the metadata as well as RIFF INFO. This article guides developers to programmatically extract metadata and RIFF INFO from the WAV audio files in Java.

The following topics are covered in the article in brief:

Java API for Managing Metadata and RIFF INFO#

GroupDocs.Metadata for Java is the metadata automation and manipulation API for various document and image file formats. I will be using this API to extract metadata and RIFF INFO from WAV files. In addition to the audio WAV files, the API supports adding, removing, updating, and extracting metadata from MP3 files and videos. Furthermore, it also supports Microsoft Office and Open Office file formats, eBooks, images, and many other document formats.

Download and Configure#

Get the library from downloads or just add the following pom.xml configuration in your Maven-based Java applications to try the below-mentioned examples. For the details, you may visit the API Reference.

 GroupDocsJavaAPI GroupDocs Java API http://repository.groupdocs.com/repo/  com.groupdocs groupdocs-metadata 21.2  

Extract Metadata of WAV Files in Java#

The following steps and the below-mentioned Java code example extract the metadata of the WAV files.

  • Load the WAV audio file.
  • Get the WavRootPackage of metadata.
  • Extract the WavPackage using getWavPackage method.
  • Now you can access all the properties of WAV audio.
Читайте также:  Java persistence many to many

The above code produces the following output with the provided wav file:

Bits per Sample: 16 Block Align: 4 Byte Rate: 176400 Number of Channels: 2 Audio Format: 1 Sample Rate: 44100 

Extract RIFF INFO of WAV Files in Java#

If you want to extract the RIFF INFO of the WAV files, you can get it within your Java application using these steps. This is similar to the way we extracted the metadata shown above.

  • Load the WAV file.
  • Get the WavRootPackage of metadata.
  • Extract the RiffInfoPackage from the root package.
  • Now the properties of WAV audio are accessible.

The following code example extracts the RIFF INFO package metadata properties of the WAV file in Java.

The following is the output of the above code:

Artist: GroupDocs Comment: Sample WAV File Copyright: CreationDate: 2020-12-03 Software: Sound Forge Engineer: SGEFFNER Genre: Mystery 

Conclusion#

In this article, we discussed how to programmatically extract metadata and RIFF INFO from WAV audio files in Java. I hope you find it quite simple. Now you can build your own metadata extractor Java application using GroupDocs.Metadata for Java.

More about the API#

Let’s clear any doubts @ Free Support Forum.

See Also#

Источник

Read Image Metadata from single file with Java

I want to read image metadata from a single file. I tried the following code: http://johnbokma.com/java/obtaining-image-metadata.html When I run it, I get build successful but nothing happens.

public class Metadata < public static void main(String[] args) < Metadata meta = new Metadata(); int length = args.length; for ( int i = 0; i < length; i++ ) meta.readAndDisplayMetadata( args[i] ); >void readAndDisplayMetadata( String fileName ) < try < File file = new File( fileName ); ImageInputStream iis = ImageIO.createImageInputStream(file); Iteratorreaders = ImageIO.getImageReaders(iis); if (readers.hasNext()) < // pick the first available ImageReader ImageReader reader = readers.next(); // attach source to the reader reader.setInput(iis, true); // read metadata of first image IIOMetadata metadata = reader.getImageMetadata(0); String[] names = metadata.getMetadataFormatNames(); int length = names.length; for (int i = 0; i < length; i++) < System.out.println( "Format name: " + names[ i ] ); displayMetadata(metadata.getAsTree(names[i])); >> > catch (Exception e) < e.printStackTrace(); >> > 

How are you trying to run this programme? In Eclipse? How are you supplying the arguments to the programme? I’ll edit my answer below based on this information.

You need to supply an absolute path to an image file for that code to work. Eg: C:\\Users\\luckheart\\Desktop\\image.png What is the file name (and location) of the image that you’re trying to load?

2 Answers 2

You haven’t specified the path to the file correctly. The change below should indicate this!

public static void main(String[] args) < Metadata meta = new Metadata(); int length = args.length; for ( int i = 0; i < length; i++ ) < if (new File(args[i]).exists()) < meta.readAndDisplayMetadata( args[i] ); >else < System.out.println("cannot find file: " + args[i]); >> > 

EDIT — Simpler code example

We are now statically defining which file to use.

public static void main(String[] args) < Metadata meta = new Metadata(); String filename = "C:\\Users\\luckheart\\Pictures\\Sample Pictures\\Koala.jpg"; if (new File(filename).exists()) < meta.readAndDisplayMetadata(filename); >else < System.out.println("cannot find file: " + filename); >> 

@Luckheart I’ve edited the answer to provide a simpler example. Once the simple example is working, try changing it to the previous example, and have a read of this: stackoverflow.com/questions/9168759/… to pass in external filenames in Netbeans.

Reading Image Meta is now much simplified and streamlined with apache commons-imaging library

/** * Reference : https://github.com/apache/commons-imaging/blob/master/src/test/java/org/apache/commons/imaging/examples/MetadataExample.java */ public static void readImageMeta(final File imgFile) throws ImageReadException, IOException < /** get all metadata stored in EXIF format (ie. from JPEG or TIFF). **/ final ImageMetadata metadata = Imaging.getMetadata(imgFile); System.out.println(metadata); System.out.println("--------------------------------------------------------------------------------"); /** Get specific meta data information by drilling down the meta **/ if (metadata instanceof JpegImageMetadata) < JpegImageMetadata jpegMetadata = (JpegImageMetadata) metadata; printTagValue(jpegMetadata, GpsTagConstants.GPS_TAG_GPS_LATITUDE_REF); printTagValue(jpegMetadata, GpsTagConstants.GPS_TAG_GPS_LATITUDE); printTagValue(jpegMetadata, GpsTagConstants.GPS_TAG_GPS_LONGITUDE_REF); printTagValue(jpegMetadata, GpsTagConstants.GPS_TAG_GPS_LONGITUDE); // simple interface to GPS data final TiffImageMetadata exifMetadata = jpegMetadata.getExif(); if (null != exifMetadata) < final TiffImageMetadata.GPSInfo gpsInfo = exifMetadata.getGPS(); if (null != gpsInfo) < final String gpsDescription = gpsInfo.toString(); final double longitude = gpsInfo.getLongitudeAsDegreesEast(); final double latitude = gpsInfo.getLatitudeAsDegreesNorth(); System.out.println(" " + "GPS Description: " + gpsDescription); System.out.println(" " + "GPS Longitude (Degrees East): " + longitude); System.out.println(" " + "GPS Latitude (Degrees North): " + latitude); >> // more specific example of how to manually access GPS values final TiffField gpsLatitudeRefField = jpegMetadata.findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_LATITUDE_REF); final TiffField gpsLatitudeField = jpegMetadata.findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_LATITUDE); final TiffField gpsLongitudeRefField = jpegMetadata.findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_LONGITUDE_REF); final TiffField gpsLongitudeField = jpegMetadata.findEXIFValueWithExactMatch(GpsTagConstants.GPS_TAG_GPS_LONGITUDE); if (gpsLatitudeRefField != null && gpsLatitudeField != null && gpsLongitudeRefField != null && gpsLongitudeField != null) < // all of these values are strings. final String gpsLatitudeRef = (String) gpsLatitudeRefField.getValue(); final RationalNumber[] gpsLatitude = (RationalNumber[]) (gpsLatitudeField.getValue()); final String gpsLongitudeRef = (String) gpsLongitudeRefField.getValue(); final RationalNumber[] gpsLongitude = (RationalNumber[]) gpsLongitudeField.getValue(); final RationalNumber gpsLatitudeDegrees = gpsLatitude[0]; final RationalNumber gpsLatitudeMinutes = gpsLatitude[1]; final RationalNumber gpsLatitudeSeconds = gpsLatitude[2]; final RationalNumber gpsLongitudeDegrees = gpsLongitude[0]; final RationalNumber gpsLongitudeMinutes = gpsLongitude[1]; final RationalNumber gpsLongitudeSeconds = gpsLongitude[2]; // This will format the gps info like so: // // gpsLatitude: 8 degrees, 40 minutes, 42.2 seconds S // gpsLongitude: 115 degrees, 26 minutes, 21.8 seconds E System.out.println(" " + "GPS Latitude: " + gpsLatitudeDegrees.toDisplayString() + " degrees, " + gpsLatitudeMinutes.toDisplayString() + " minutes, " + gpsLatitudeSeconds.toDisplayString() + " seconds " + gpsLatitudeRef); System.out.println(" " + "GPS Longitude: " + gpsLongitudeDegrees.toDisplayString() + " degrees, " + gpsLongitudeMinutes.toDisplayString() + " minutes, " + gpsLongitudeSeconds.toDisplayString() + " seconds " + gpsLongitudeRef); >> > private static void printTagValue(final JpegImageMetadata jpegMetadata, TagInfo tagInfo) < final TiffField field = jpegMetadata.findEXIFValueWithExactMatch(tagInfo); if (field == null) < System.out.println(tagInfo.name + ": " + "Not Found."); >else < System.out.println(tagInfo.name + ": " + field.getValueDescription()); >> public static void main(String[] args) throws IOException, ImageReadException < File sourceFile = new File("/Users/vivek/myimage.jpg"); readImageMeta(sourceFile); >

The above code will give this output

Exif metadata: Root: ImageWidth: 3024 ImageLength: 4032 BitsPerSample: 8, 8, 8 PhotometricInterpretation: 2 Make: 'Apple' Model: 'iPhone 6s' Orientation: 1 SamplesPerPixel: 3 XResolution: 72 YResolution: 72 ResolutionUnit: 2 Software: 'Adobe Photoshop CC 2015 (Macintosh)' DateTime: '2016:05:17 16:55:55' YCbCrPositioning: 1 ExifOffset: 300 GPSInfo: 868 Exif: ExposureTime: 1/100 (0.01) FNumber: 11/5 (2.2) ExposureProgram: 2 PhotographicSensitivity: 40 ExifVersion: 48, 50, 50, 49 DateTimeOriginal: '2016:05:08 18:03:57' DateTimeDigitized: '2016:05:08 18:03:57' ComponentsConfiguration: 1, 2, 3, 0 ShutterSpeedValue: 35113/5284 (6.645) ApertureValue: 7983/3509 (2.275) BrightnessValue: 13026/2395 (5.439) ExposureCompensation: 0 MeteringMode: 5 Flash: 16 FocalLength: 83/20 (4.15) SubjectArea: 618, 1555, 310, 311 SubSecTimeOriginal: '523' SubSecTimeDigitized: '523' FlashpixVersion: 48, 49, 48, 48 ColorSpace: 1 ExifImageWidth: 3024 ExifImageLength: 4032 SensingMethod: 2 SceneType: 1 CustomRendered: 4 ExposureMode: 0 WhiteBalance: 0 FocalLengthIn35mmFormat: 29 SceneCaptureType: 0 LensSpecification: 83/20 (4.15), 83/20 (4.15), 11/5 (2.2), 11/5 (2.2) LensMake: 'Apple' LensModel: 'iPhone 6s back camera 4.15mm f/2.2' Gps: GPSLatitudeRef: 'N' GPSLatitude: 13, 21, 3305/100 (33.05) GPSLongitudeRef: 'E' GPSLongitude: 75, 33, 2034/100 (20.34) GPSAltitudeRef: 0 GPSAltitude: 83651/95 (880.537) GPSTimeStamp: 12, 33, 57 GPSSpeedRef: 'K' GPSSpeed: 21/100 (0.21) GPSImgDirectionRef: 'T' GPSImgDirection: 1654/31 (53.355) GPSDestBearingRef: 'T' GPSDestBearing: 1654/31 (53.355) GPSDateStamp: '2016:05:08' Unknown Tag (0x1f): 5 Sub: (jpegImageData) Compression: 6 XResolution: 72 YResolution: 72 ResolutionUnit: 2 JpgFromRawStart: 1274 JpgFromRawLength: 8211 Photoshop (IPTC) metadata: Date Created: 20160508 Time Created: 180357+0000 -------------------------------------------------------------------------------- GPSLatitudeRef: 'N' GPSLatitude: 13, 21, 3305/100 (33.05) GPSLongitudeRef: 'E' GPSLongitude: 75, 33, 2034/100 (20.34) GPS Description: [GPS. Latitude: 13 degrees, 21 minutes, 33.05 seconds N, Longitude: 75 degrees, 33 minutes, 20.34 seconds E] GPS Longitude (Degrees East): 75.55565 GPS Latitude (Degrees North): 13.359180555555556 GPS Latitude: 13 degrees, 21 minutes, 33.05 seconds N GPS Longitude: 75 degrees, 33 minutes, 20.34 seconds E 

Fore More Refer the library documentation here
Maven Repo Link here.
Note : It’s an alpha release at this time but you can trust apache :D.

Источник

is it possible to set custom metadata on files, using Java?

Is it possible to get and set custom metadata on File instances? I want to use the files that I process through my system as some kind of a very simple database, where every file should contain additional custom metadata, such as the email of the sender, some timestamps, etc. It is for an internal system, so security is not an issue.

For a similar requirement I created an additional meta data file for every file, i.e. a file named report.pdf had a report.pdf.meta file which contained the meta data. Not as fancy as using extended attributes, but it worked.

2 Answers 2

In java 7 you can do this using the Path class and UserDefinedFileAttributeView .

Here is the example taken from there:

A file’s MIME type can be stored as a user-defined attribute by using this code snippet:

Path file = . ; UserDefinedFileAttributeView view = Files .getFileAttributeView(file, UserDefinedFileAttributeView.class); view.write("user.mimetype", Charset.defaultCharset().encode("text/html"); 

To read the MIME type attribute, you would use this code snippet:

Path file = . ; UserDefinedFileAttributeView view = Files .getFileAttributeView(file,UserDefinedFileAttributeView.class); String name = "user.mimetype"; ByteBuffer buf = ByteBuffer.allocate(view.size(name)); view.read(name, buf); buf.flip(); String value = Charset.defaultCharset().decode(buf).toString(); 

Источник

Оцените статью