Urs Fleisch
1a2e1d08ac
Merge pull request #986 from ufleisch/ufleisch/wav-extensible-subformat
...
WAV: Support subformat in WAVE_FORMAT_EXTENSIBLE (#850 )
2021-01-01 11:48:06 +01:00
Urs Fleisch
3f3b48353c
Merge pull request #983 from ufleisch/ufleisch/flac-comment-before-picture
...
FLAC: Store comment block before picture block (#954 )
2021-01-01 11:45:14 +01:00
Urs Fleisch
54f5c66b65
Merge pull request #981 from ufleisch/ufleisch/alac-without-bitrate
...
Calculate bitrate for ALAC files without it (#961 )
2021-01-01 11:45:12 +01:00
Urs Fleisch
3749dd7b75
Write ID3v2.3 genres with multiple references to ID3v1 genres ( #988 )
...
As described in id3v2.3.0.txt (4.2.1, TCON), multiple genres are
only possible as references to ID3v1 genres with an optional
refinement as a text. When downgrading multiple genres from
ID3v2.4.0, they are now converted to numbers when possible and
the first genre text without ID3v1 reference is added as a
refinement. The keywords RX and CR are supported too.
2020-12-30 17:38:04 +01:00
Urs Fleisch
d602ae483e
Read ID3v2.3 genres with multiple references to ID3v1 genres ( #988 )
...
As described in id3v2.3.0.txt (4.2.1, TCON), now multiple genres
are possible, e.g. "(51)(39)". Additionally, support the keywords
RX and CR.
2020-12-30 17:37:54 +01:00
Urs Fleisch
5374cb1ac4
Merge pull request #980 from ufleisch/ufleisch/wav-float-without-fact
...
Calculate bitrate for IEEE Float WAV files without fact chunk (#959 )
2020-12-28 09:16:44 +01:00
Urs Fleisch
8a461ccedc
Merge pull request #978 from ufleisch/ufleisch/wavs-with-garbage
...
Accept WAV files with garbage appended (#973 )
2020-12-28 09:07:39 +01:00
Urs Fleisch
17c2220588
Merge pull request #963 from dbry/wavpack-fixes
...
WavPack fixes with test file verifying issue #962
2020-12-28 09:07:37 +01:00
Urs Fleisch
271c004b30
Merge pull request #942 from uqs/master
...
Fix spelling of Bebop and update Fusion and Hardcore to match Wikipedia
2020-12-28 09:07:34 +01:00
Urs Fleisch
25d9bd1814
Merge pull request #935 from jiblime/static-config
...
taglib-config.cmake has static libdir and includedir variables
2020-12-28 09:07:32 +01:00
Urs Fleisch
b0bb7f8c0f
Merge pull request #888 from chouquette/use_resolvers_on_streams
...
fileref: Use user defined resolvers on streams
2020-12-28 09:07:30 +01:00
Urs Fleisch
4d3ab73d2e
Merge pull request #855 from shaforostoff/broken_mp3
...
fix reading audioproperties for broken mp3 files
2020-12-28 09:05:31 +01:00
Urs Fleisch
ae867cbd8c
ID3v1: Improve compatibility by mapping renamed genre names to codes
...
Also added a test to check if the renamed genre names are used and
check if using the old names still works.
2020-12-27 19:53:11 +01:00
Urs Fleisch
563fbaf82a
Handle the case when MP4 file header has zero bitrate
...
This incorporates [6ca536b5
] (mp4 properties: handle the case when
mp4 file header has zero bitrate) from PR #899 with a more accurate
bitrate calculation and a unit test.
2020-12-27 10:17:34 +01:00
Urs Fleisch
e5ad041e42
A few more corrections to genre names
2020-12-24 10:08:47 +01:00
Hugo Beauzée-Luyssen
9ca7b0c33a
fileref: Use user defined resolvers on streams
...
Since the resolve only use the filename, there is no reason not to probe
them, as a filename might be available through the IOStream interface.
When using a ByteVectorStream, the filename will be empty and user
defined resolvers won't be probed.
2020-12-23 12:34:54 +01:00
Urs Fleisch
a00b3499b4
WavPack: Add test with non-standard sample rate
2020-12-23 07:04:51 +01:00
Urs Fleisch
d84e86da9c
Clean up code to better match the TagLib style
2020-12-23 07:04:51 +01:00
Urs Fleisch
741ed4e4bf
Add test for IEEE Float WAV file without fact chunk
2020-12-22 16:02:01 +01:00
Urs Fleisch
e4813f4996
Calculate bitrate for IEEE Float WAV files without fact chunk ( #959 )
...
When a WAV file with float format without a fact chunk containing
a totalSamples value is encountered, the bitrate is not calculated.
However, since all samples have the same number of bits, the
number of samples can be calculated from the size of the data chunk
and number of channels and bits per sample, as it is done in the
PCM case.
2020-12-22 15:46:48 +01:00
Urs Fleisch
1332d44ff6
WAV: Test properties of file with WAVE_FORMAT_EXTENSIBLE
...
uint8we.wav: http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/Samples/AFsp/M1F1-uint8WE-AFsp.wav
2020-12-21 15:42:13 +01:00
Urs Fleisch
3d71ea1ad2
ALAC: Test properties of file without bitrate
2020-12-21 13:31:24 +01:00
Urs Fleisch
02c8995273
Calculate bitrate for ALAC files without it ( #961 )
...
If the "alac" atom of an MP4 file has a zero bitrate, it is calculated.
2020-12-21 12:22:25 +01:00
Urs Fleisch
7e92af6e8b
FLAC: Test if picture is stored after comment
2020-12-21 11:46:10 +01:00
Urs Fleisch
7ec1127f3e
FLAC: Store comment block before picture block ( #954 )
...
When the picture block is large and comes before the comment block,
Windows will no longer display the tags. This can be fixed by
storing the comment block before the picture block instead of
appending it at the end.
2020-12-21 11:09:15 +01:00
Urs Fleisch
30d839538d
Make PlainFile available to all tests
2020-12-21 08:44:32 +01:00
Scott Wheeler
8f6b6ac055
Don't pull in C++11+ for one class
2020-12-20 18:38:05 +01:00
Scott Wheeler
a5f11697f7
Get things building again with C++98
2020-12-20 18:12:14 +01:00
Scott Wheeler
1721354627
Explicitly set C98 for this target
...
Sometime I'd like to get the lib over to C++1x, but for now, enforce
the currently in-use standard.
2020-12-20 14:22:20 +00:00
Scott Wheeler
ac7e5303a6
Merge pull request #969 from ujjwalsh/master
...
Adding support for Linux on power
2020-12-20 15:17:40 +01:00
Scott Wheeler
8ba246cdbe
Merge pull request #984 from ufleisch/ufleisch/m4a-empty-strings-remove-items
...
MP4: Remove item when empty string is set (#929 )
2020-12-20 15:13:58 +01:00
Scott Wheeler
6656528f18
Also allow #include <taglib/foo.h> with taglib.pc and friends
...
Closes #495
2020-12-20 14:09:49 +00:00
Urs Fleisch
bad2cea122
WAV: Support subformat in WAVE_FORMAT_EXTENSIBLE ( #850 )
2020-12-20 11:47:04 +01:00
Urs Fleisch
61d5bcfd5b
MP4: Remove item when empty string is set ( #929 )
...
This will make the behavior for MP4 tags compliant to the API
documentation and consistent with other tag formats.
2020-12-13 12:37:20 +01:00
Urs Fleisch
2dd6931eee
Accept WAV files with garbage appended ( #973 )
...
This will allow editing the tags of WAV files which have data
appended at the end. The corresponding unit test checks that the
original contents are still available after editing the metadata
of such files.
2020-12-06 08:56:35 +01:00
Scott Wheeler
91b00b17b2
Missing const here
2020-10-12 16:52:09 +02:00
Scott Wheeler
e116824380
Downgrade numerical genres back to ID3v2.3 format
...
Closes #631
2020-10-12 08:46:51 +02:00
Scott Wheeler
2db13ad8cf
Add a little sanity to the formatting here
2020-10-12 08:36:57 +02:00
ujjwalsh
cd767738fc
adding support for linux on power
2020-09-01 16:55:07 +00:00
David Bryant
43bc11541d
correctly read very high sample rates from WavPack files
2020-07-02 17:22:03 -07:00
David Bryant
6806dc4cf2
make WavPack seekFinalIndex() more robust to false triggers
2020-07-02 16:15:51 -07:00
David Bryant
ec9c49b964
add test for WavPack DSD (issue #962 )
2020-07-01 08:35:20 -07:00
David Bryant
872cafb0b9
Several fixes for WavPack files, including issue #962
...
Fixes to properly handle WavPack files with leading and
trailing non-audio blocks, non-standard sampling rates,
and DSD audio (introduced in WavPack 5).
2020-06-30 22:19:38 -07:00
Scott Wheeler
47342f6974
Prefer COMM frames with no description for setComment()
...
This creates symetry with ID3v2::Tag::comment() in preferring frames with no description
when choosing which COMM frame should be updated. (Previously setComment() simply updated
the first COMM frame.)
Fixes #950
2020-03-27 12:14:51 +01:00
Ulrich Spörlein
5763d042a6
Fix spelling of Bebop and update Fusion and Hardcore to match Wikipedia
...
Source: https://en.wikipedia.org/wiki/List_of_ID3v1_Genres
Similar patches will be sent to libid3tag and ffmpeg to harmonize the
genre names and spellings.
2019-12-19 14:53:57 +01:00
jiblime
cd9e6b7502
Changed libdir/includedir variables to change based on a user's system and match syntax
2019-10-19 15:13:28 -07:00
Scott Wheeler
54508df30b
Needs to be defined to nothing if none of the #if blocks match
2019-09-20 10:32:33 +02:00
Scott Wheeler
dcf0331eb1
Use newer function signatures
2019-09-19 15:23:34 +02:00
Scott Wheeler
96155f35fa
Use new method signatures
2019-09-19 15:19:17 +02:00
Scott Wheeler
ebd3373d6d
Correctly decode signed values
...
In SV7 these are a mix of signed and unsigned shorts; in SV8 they're all
signed. Storing them as an int is fine for signed or unsigned shorts as
it's wide enough to contain either of them.
Unfortunately there are no explicit tests for SV7 at the moment; that
would be ideal to add before the next release.
CC @carewolf
2019-09-12 12:13:24 +02:00