-
Notifications
You must be signed in to change notification settings - Fork 25
/
CHANGES.txt
64 lines (57 loc) · 2.53 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Version 0.9 (In Progress)
* Minimum Java version increased to Java 8
* When writing Opus Audio, by default calculate the Granule
postion (disable with packets page per of -1)
* Allow control of the number of Opus Audio packets per page,
to control granule accuracy. (thanks to @msalikhov)
* Improve FLAC-native last Metadata Block detection (thanks to @croger42)
* Fix for "UTF-8" style continuation number reading in FLAC
* Ability to calculate FLAC audio statistics such as duration,
eg for streamed or truncated files
* Calculate the duration of FLAC Audio files, and pass that
through to Tika
Version 0.8 (2016-02-17)
* Correct close / reset logic for Tika in OggDetector
* Common logic on audio statistics moved from Tika Parsers
and InfoTools into OggAudioStatistics
* New OpusInfoTool
* Common logic and support for Ogg Audio info tools,
used by VorbisInfoTool and OpusInfoTool
* Support for updating of granule position while writing packets
(thanks to @andrm)
* Opus audio packet-level statistics (thanks to @andrm)
* New FlacInfoTool and FLAC Comments Tool
* Partial FLAC support for reading frames and subframes. Still
a work-in-progress, and no audio-decoding support exists
* If an EOF is hit during Ogg Page read, log + treat as no
further packets rather than giving an Exception
Version 0.7 (2014-12-21)
* VorbisFile / OpusFile / etc with close methods support
the java.io.Closeable() interface
* Skeleton (stream metadata) read support, and info tool
* Common interfaces for Audio streams and headers
* Support for libopus 1.1 generated Opus files, which have
padding after comments but no framing (not all formats do)
* Basic Theora read support
Version 0.6 (2014-05-09)
* Tika audio parsers extraction of audio length
* Fixed CRC warning on all-255 checksums
Version 0.4 (2014-03-18)
* Improved Tika detection
* Improved Tika parser metadata for general types
* OggStreamIdentifier to make stream type detection cleaner
* Basic Fisbone / Skeleton read support
* Speex support at a similar level to Vorbis
* Comment tools for all supported audio formats
Version 0.3 (2014-03-09)
* Opus support at a similar level to Vorbis
Version 0.2 (2012-08-02)
* Update to Tika 1.2
* Fixed dependency scopes
Version 0.1 (2012-01-26)
* Initial Version
* Read and write support for low-level Vorbis and Ogg
* Read and write support for Vorbis info and tags
* Read support for low level FLAC (FLAC native and FLAC Ogg)
* Tools for reading and writing Vorbis Comments (tags)
* Tika plugin, with Parser and Detector