tinytag icon indicating copy to clipboard operation
tinytag copied to clipboard

Python library for reading audio file metadata, duration of MP3, OGG, OPUS, MP4, M4A, FLAC, WMA, Wave, AIFF and a few more

Results 44 tinytag issues
Sort by recently updated
recently updated
newest added

**Describe the bug** When I trying to get file duration: `TinyTag.get(filename).duration` and for some files I have exception: ``` File "/opt/virtualenvs//lib/python3.6/site-packages/downloadable.py", line 280, in get_file_duration return TinyTag.get(filename).duration File "/opt/virtualenvs/lib/python3.6/site-packages/tinytag/tinytag.py", line...

bug

TOC uses 100 bytes, but we were reading 400 bytes. Fixes #153

There are small typos in: - tinytag/tinytag.py Fixes: - Should read `offset` rather than `offest`. - Should read `endianness` rather than `endianess`. - Should read `convenience` rather than `convienience`. Semi-automated...

Identificação em arquivos com extensão .mp3. Podendo se estender para outros tipos de arquivos. Bug: mal formatação de string. Modulo: tinytag.py Descrição: Ao inserir mais de um artista na tag...

need more info

This is a record of planned breaking changes for a major version change - [ ] The `track` and `track_total` field should return integers instead of - [ ] The...

roadmap

a sort of followup to #100 / #113 I have a situation where i need to detect the image character set as the formatting found in #100 / #113 cause...

**Describe the bug** Some MP3‘s genre cannot be read correctly since v1.8.0. **To Reproduce** The test code is as follows, and the read genre is an empty string: ```python from...

bug

- Move `Flac`'s image parsing logic to a new staticmethod, `_parse_image`. - Check and parse `METADATA_BLOCK_PICTURE` field.

Obtaining audio files via network transfer * e.g: - img = request.file.get('xxx')    # img_buff = BufferedReader(img) img_byte = BufferedReader.read(img_buff)    Flac_info = Flac(img_buff, len(img_byte))    info = Flac_info.load(tags=True, duration=True,...