From e5e9ba30223e830edc33700c4a20aa1d9d456a34 Mon Sep 17 00:00:00 2001 From: Adrian Ulrich Date: Fri, 3 Feb 2017 18:48:48 +0100 Subject: [PATCH] Sync with BASTP HEAD --- src/ch/blinkenlights/bastp/Bastp.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ch/blinkenlights/bastp/Bastp.java b/src/ch/blinkenlights/bastp/Bastp.java index a645bce1..05bba727 100644 --- a/src/ch/blinkenlights/bastp/Bastp.java +++ b/src/ch/blinkenlights/bastp/Bastp.java @@ -1,5 +1,6 @@ /* * Copyright (C) 2013 Adrian Ulrich + * Copyright (C) 2017 Google Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -86,7 +87,8 @@ public class Bastp { magic.substring(8,11).equals("M4A") || // Apple audio magic.substring(8,11).equals("M4V") || // Apple video magic.substring(8,12).equals("mp42") || // generic MP4, e.g. FAAC - magic.substring(8,12).equals("isom") // generic MP4, e.g. ffmpeg + magic.substring(8,12).equals("isom") || // generic MP4, e.g. ffmpeg + magic.substring(8,12).equals("dash") // IEC 23009-1 data )) { tags = (new Mp4File()).getTags(s); tags.put("type", "MP4");