[tika] 06/23: Refresh 02-ignore-mp4parser.patch

Markus Koschany apo-guest at moszumanska.debian.org
Mon Nov 30 20:27:40 UTC 2015


This is an automated email from the git hooks/post-receive script.

apo-guest pushed a commit to branch master
in repository tika.

commit 93c9c0a2f76a2430b7232c108f07dacf90b76bc9
Author: Markus Koschany <apo at debian.org>
Date:   Mon Nov 30 15:47:41 2015 +0000

    Refresh 02-ignore-mp4parser.patch
---
 debian/patches/02-ignore-mp4parser.patch | 320 -------------------------------
 debian/patches/series                    |   1 -
 2 files changed, 321 deletions(-)

diff --git a/debian/patches/02-ignore-mp4parser.patch b/debian/patches/02-ignore-mp4parser.patch
deleted file mode 100644
index 1fa7bf8..0000000
--- a/debian/patches/02-ignore-mp4parser.patch
+++ /dev/null
@@ -1,320 +0,0 @@
-Description: Remove the classes using the mp4parser library which isn't in Debian yet
-Author: Emmanuel Bourg <ebourg at apache.org>
-Forwarded: not-needed
---- a/tika-parsers/src/main/java/org/apache/tika/parser/mp4/MP4Parser.java
-+++ /dev/null
-@@ -1,314 +0,0 @@
--/*
-- * Licensed to the Apache Software Foundation (ASF) under one or more
-- * contributor license agreements.  See the NOTICE file distributed with
-- * this work for additional information regarding copyright ownership.
-- * The ASF licenses this file to You under the Apache License, Version 2.0
-- * (the "License"); you may not use this file except in compliance with
-- * the License.  You may obtain a copy of the License at
-- *
-- *     http://www.apache.org/licenses/LICENSE-2.0
-- *
-- * Unless required by applicable law or agreed to in writing, software
-- * distributed under the License is distributed on an "AS IS" BASIS,
-- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- * See the License for the specific language governing permissions and
-- * limitations under the License.
-- */
--package org.apache.tika.parser.mp4;
--
--import java.io.IOException;
--import java.io.InputStream;
--import java.util.Arrays;
--import java.util.Collections;
--import java.util.Date;
--import java.util.HashMap;
--import java.util.List;
--import java.util.Map;
--import java.util.Set;
--
--import org.apache.tika.exception.TikaException;
--import org.apache.tika.io.TikaInputStream;
--import org.apache.tika.metadata.Metadata;
--import org.apache.tika.metadata.Property;
--import org.apache.tika.metadata.TikaCoreProperties;
--import org.apache.tika.metadata.XMPDM;
--import org.apache.tika.mime.MediaType;
--import org.apache.tika.parser.AbstractParser;
--import org.apache.tika.parser.ParseContext;
--import org.apache.tika.sax.XHTMLContentHandler;
--import org.xml.sax.ContentHandler;
--import org.xml.sax.SAXException;
--
--import com.coremedia.iso.IsoFile;
--import com.coremedia.iso.boxes.Box;
--import com.coremedia.iso.boxes.ContainerBox;
--import com.coremedia.iso.boxes.FileTypeBox;
--import com.coremedia.iso.boxes.MetaBox;
--import com.coremedia.iso.boxes.MovieBox;
--import com.coremedia.iso.boxes.MovieHeaderBox;
--import com.coremedia.iso.boxes.SampleDescriptionBox;
--import com.coremedia.iso.boxes.SampleTableBox;
--import com.coremedia.iso.boxes.TrackBox;
--import com.coremedia.iso.boxes.TrackHeaderBox;
--import com.coremedia.iso.boxes.UserDataBox;
--import com.coremedia.iso.boxes.apple.AbstractAppleMetaDataBox;
--import com.coremedia.iso.boxes.apple.AppleAlbumBox;
--import com.coremedia.iso.boxes.apple.AppleArtistBox;
--import com.coremedia.iso.boxes.apple.AppleCommentBox;
--import com.coremedia.iso.boxes.apple.AppleCustomGenreBox;
--import com.coremedia.iso.boxes.apple.AppleEncoderBox;
--import com.coremedia.iso.boxes.apple.AppleItemListBox;
--import com.coremedia.iso.boxes.apple.AppleRecordingYearBox;
--import com.coremedia.iso.boxes.apple.AppleStandardGenreBox;
--import com.coremedia.iso.boxes.apple.AppleTrackAuthorBox;
--import com.coremedia.iso.boxes.apple.AppleTrackNumberBox;
--import com.coremedia.iso.boxes.apple.AppleTrackTitleBox;
--import com.coremedia.iso.boxes.sampleentry.AudioSampleEntry;
--
--/**
-- * Parser for the MP4 media container format, as well as the older
-- *  QuickTime format that MP4 is based on.
-- * 
-- * This uses the MP4Parser project from http://code.google.com/p/mp4parser/
-- *  to do the underlying parsing
-- */
--public class MP4Parser extends AbstractParser {
--    /** Serial version UID */
--    private static final long serialVersionUID = 84011216792285L;
--    
--    // Ensure this stays in Sync with the entries in tika-mimetypes.xml
--    private static final Map<MediaType,List<String>> typesMap = new HashMap<MediaType, List<String>>();
--    static {
--       // All types should be 4 bytes long, space padded as needed
--       typesMap.put(MediaType.audio("mp4"), Arrays.asList(
--             "M4A ", "M4B ", "F4A ", "F4B "));
--       typesMap.put(MediaType.video("3gpp"), Arrays.asList(
--             "3ge6", "3ge7", "3gg6", "3gp1", "3gp2", "3gp3", "3gp4", "3gp5", "3gp6", "3gs7"));
--       typesMap.put(MediaType.video("3gpp2"), Arrays.asList(
--             "3g2a", "3g2b", "3g2c"));
--       typesMap.put(MediaType.video("mp4"), Arrays.asList(
--             "mp41", "mp42"));
--       typesMap.put(MediaType.video("x-m4v"), Arrays.asList(
--             "M4V ", "M4VH", "M4VP"));
--       
--       typesMap.put(MediaType.video("quicktime"), Collections.<String>emptyList());
--       typesMap.put(MediaType.application("mp4"), Collections.<String>emptyList());
--    }
--
--    private static final Set<MediaType> SUPPORTED_TYPES =
--       Collections.unmodifiableSet(typesMap.keySet());
--
--    public Set<MediaType> getSupportedTypes(ParseContext context) {
--        return SUPPORTED_TYPES;
--    }
--
--
--    public void parse(
--            InputStream stream, ContentHandler handler,
--            Metadata metadata, ParseContext context)
--            throws IOException, SAXException, TikaException {
--        IsoFile isoFile;
--        
--        // The MP4Parser library accepts either a File, or a byte array
--        // As MP4 video files are typically large, always use a file to
--        //  avoid OOMs that may occur with in-memory buffering
--        TikaInputStream tstream = TikaInputStream.get(stream);
--        try {
--           isoFile = new IsoFile(tstream.getFileChannel());
--        } finally {
--           tstream.close();
--        }
--        
--        
--        // Grab the file type box
--        FileTypeBox fileType = getOrNull(isoFile, FileTypeBox.class);
--        if (fileType != null) {
--           // Identify the type
--           MediaType type = MediaType.application("mp4");
--           for (MediaType t : typesMap.keySet()) {
--              if (typesMap.get(t).contains(fileType.getMajorBrand())) {
--                 type = t;
--                 break;
--              }
--           }
--           metadata.set(Metadata.CONTENT_TYPE, type.toString());
--           
--           if (type.getType().equals("audio")) {
--              metadata.set(XMPDM.AUDIO_COMPRESSOR, fileType.getMajorBrand().trim());
--           }
--        } else {
--           // Some older QuickTime files lack the FileType
--           metadata.set(Metadata.CONTENT_TYPE, "video/quicktime");
--        }
--        
--        
--        // Get the main MOOV box
--        MovieBox moov = getOrNull(isoFile, MovieBox.class);
--        if (moov == null) {
--           // Bail out
--           return;
--        }
--
--        
--        XHTMLContentHandler xhtml = new XHTMLContentHandler(handler, metadata);
--        xhtml.startDocument();
--        
--        
--        // Pull out some information from the header box
--        MovieHeaderBox mHeader = getOrNull(moov, MovieHeaderBox.class);
--        if (mHeader != null) {
--           // Get the creation and modification dates
--           metadata.set(
--                 Metadata.CREATION_DATE, 
--                 MP4TimeToDate(mHeader.getCreationTime())
--           );
--           metadata.set(
--                 TikaCoreProperties.MODIFIED,
--                 MP4TimeToDate(mHeader.getModificationTime())
--           );
--           
--           // Get the duration
--           double durationSeconds = ((double)mHeader.getDuration()) / mHeader.getTimescale();
--           // TODO Use this
--           
--           // The timescale is normally the sampling rate
--           metadata.set(XMPDM.AUDIO_SAMPLE_RATE, (int)mHeader.getTimescale());
--        }
--        
--        
--        // Get some more information from the track header
--        // TODO Decide how to handle multiple tracks
--        List<TrackBox> tb = moov.getBoxes(TrackBox.class);
--        if (tb.size() > 0) {
--           TrackBox track = tb.get(0);
--           
--           TrackHeaderBox header = track.getTrackHeaderBox();
--           // Get the creation and modification dates
--           metadata.set(
--                 TikaCoreProperties.CREATED, 
--                 MP4TimeToDate(header.getCreationTime())
--           );
--           metadata.set(
--                 TikaCoreProperties.MODIFIED,
--                 MP4TimeToDate(header.getModificationTime())
--           );
--           
--           // Get the video with and height
--           metadata.set(Metadata.IMAGE_WIDTH,  (int)header.getWidth());
--           metadata.set(Metadata.IMAGE_LENGTH, (int)header.getHeight());
--           
--           // Get the sample information
--           SampleTableBox samples = track.getSampleTableBox();
--           SampleDescriptionBox sampleDesc = samples.getSampleDescriptionBox();
--           if (sampleDesc != null) {
--              // Look for the first Audio Sample, if present
--              AudioSampleEntry sample = getOrNull(sampleDesc, AudioSampleEntry.class);
--              if (sample != null) {
--                 XMPDM.ChannelTypePropertyConverter.convertAndSet(metadata, sample.getChannelCount());
--                 //metadata.set(XMPDM.AUDIO_SAMPLE_TYPE, sample.getSampleSize());    // TODO Num -> Type mapping
--                 metadata.set(XMPDM.AUDIO_SAMPLE_RATE, (int)sample.getSampleRate());
--                 //metadata.set(XMPDM.AUDIO_, sample.getSamplesPerPacket());
--                 //metadata.set(XMPDM.AUDIO_, sample.getBytesPerSample());
--              }
--           }
--        }
--        
--        // Get metadata from the User Data Box
--        UserDataBox userData = getOrNull(moov, UserDataBox.class);
--        if (userData != null) {
--           MetaBox meta = getOrNull(userData, MetaBox.class);
--
--           // Check for iTunes Metadata
--           // See http://atomicparsley.sourceforge.net/mpeg-4files.html and
--           //  http://code.google.com/p/mp4v2/wiki/iTunesMetadata for more on these
--           AppleItemListBox apple = getOrNull(meta, AppleItemListBox.class);
--           if (apple != null) {
--              // Title
--              AppleTrackTitleBox title = getOrNull(apple, AppleTrackTitleBox.class);
--              addMetadata(TikaCoreProperties.TITLE, metadata, title);
--
--              // Artist
--              AppleArtistBox artist = getOrNull(apple, AppleArtistBox.class);
--              addMetadata(TikaCoreProperties.CREATOR, metadata, artist);
--              addMetadata(XMPDM.ARTIST, metadata, artist);
--              
--              // Album
--              AppleAlbumBox album = getOrNull(apple, AppleAlbumBox.class);
--              addMetadata(XMPDM.ALBUM, metadata, album);
--              
--              // Composer
--              AppleTrackAuthorBox composer = getOrNull(apple, AppleTrackAuthorBox.class);
--              addMetadata(XMPDM.COMPOSER, metadata, composer);
--              
--              // Genre
--              AppleStandardGenreBox sGenre = getOrNull(apple, AppleStandardGenreBox.class);
--              AppleCustomGenreBox   cGenre = getOrNull(apple, AppleCustomGenreBox.class);
--              addMetadata(XMPDM.GENRE, metadata, sGenre);
--              addMetadata(XMPDM.GENRE, metadata, cGenre);
--              
--              // Year
--              AppleRecordingYearBox year = getOrNull(apple, AppleRecordingYearBox.class);
--              addMetadata(XMPDM.RELEASE_DATE, metadata, year);
--              
--              // Track number 
--              AppleTrackNumberBox trackNum = getOrNull(apple, AppleTrackNumberBox.class);
--              if (trackNum != null) {
--                 metadata.set(XMPDM.TRACK_NUMBER, trackNum.getTrackNumber());
--                 //metadata.set(XMPDM.NUMBER_OF_TRACKS, trackNum.getNumberOfTracks()); // TODO
--              }
--              
--              // Comment
--              AppleCommentBox comment = getOrNull(apple, AppleCommentBox.class);
--              addMetadata(XMPDM.LOG_COMMENT, metadata, comment);
--              
--              // Encoder
--              AppleEncoderBox encoder = getOrNull(apple, AppleEncoderBox.class);
--              // addMetadata(XMPDM.???, metadata, encoder); // TODO
--              
--              
--              // As text
--              for (Box box : apple.getBoxes()) {
--                 if (box instanceof AbstractAppleMetaDataBox) {
--                    xhtml.element("p", ((AbstractAppleMetaDataBox)box).getValue());
--                 }
--              }
--           }
--           
--           // TODO Check for other kinds too
--        }
--
--        // All done
--        xhtml.endDocument();
--    }
--    
--    private static void addMetadata(String key, Metadata m, AbstractAppleMetaDataBox metadata) {
--       if (metadata != null) {
--          m.add(key, metadata.getValue());
--       }
--    }
--    private static void addMetadata(Property prop, Metadata m, AbstractAppleMetaDataBox metadata) {
--       if (metadata != null) {
--          m.set(prop, metadata.getValue());
--       }
--    }
--    
--    /**
--     * MP4 Dates are stored as 32-bit integer, which represent the seconds 
--     * since midnight, January 1, 1904, and are generally in UTC 
--     */
--    private static Date MP4TimeToDate(long mp4Time) {
--       long unix = mp4Time - EPOC_AS_MP4_TIME;
--       return new Date(unix*1000);
--    }
--    private static final long EPOC_AS_MP4_TIME = 2082844800l;
--    
--    private static <T extends Box> T getOrNull(ContainerBox box, Class<T> clazz) {
--       if (box == null) return null;
--
--       List<T> boxes = box.getBoxes(clazz);
--       if (boxes.size() == 0) {
--          return null;
--       }
--       return boxes.get(0);
--    }
--}
diff --git a/debian/patches/series b/debian/patches/series
index 0418cf5..8a50af8 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,5 +1,4 @@
 01-jar-packaging.patch
-02-ignore-mp4parser.patch
 03-ignore-netcdf.patch
 05-osgi-compatibility.patch
 06-optional-parser-dependencies.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/tika.git



More information about the pkg-java-commits mailing list