معرفی شرکت ها


audio-metadata-0.9.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A library for reading and, in the future, writing metadata from audio files.
ویژگی مقدار
سیستم عامل -
نام فایل audio-metadata-0.9.0
نام audio-metadata
نسخه کتابخانه 0.9.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده thebigmunch
ایمیل نویسنده mail@thebigmunch.me
آدرس صفحه اصلی https://github.com/thebigmunch/audio-metadata
آدرس اینترنتی https://pypi.org/project/audio-metadata/
مجوز MIT
# audio-metadata [![PyPI](https://img.shields.io/pypi/v/audio-metadata.svg?label=PyPI)](https://pypi.org/project/audio-metadata/) ![](https://img.shields.io/badge/Python-3.6%2B-blue.svg) [![GitHub CI](https://img.shields.io/github/workflow/status/thebigmunch/audio-metadata/CI?label=GitHub%20CI)](https://github.com/thebigmunch/audio-metadata/actions?query=workflow%3ACI) [![Codecov](https://img.shields.io/codecov/c/github/thebigmunch/audio-metadata.svg?label=Codecov)](https://codecov.io/gh/thebigmunch/audio-metadata) [![Docs - Stable](https://img.shields.io/readthedocs/audio-metadata/stable.svg?label=Docs%20%28Stable%29)](https://audio-metadata.readthedocs.io/en/stable/) [![Docs - Latest](https://img.shields.io/readthedocs/audio-metadata/latest.svg?label=Docs%20%28Latest%29)](https://audio-metadata.readthedocs.io/en/latest/) [audio-metadata](https://github.com/thebigmunch/audio-metadata) is a library for reading and, in the future, writing audio metadata. ### Why another audio metadata library? / Why not just use mutagen et al? Clean and understandable code, nice API, and good UX (user experience) are the focal points of audio-metadata. One or more of these things I feel are lacking from already existing alternatives enough to want to write something from scratch with them in mind. Also, there are certain features not present in other solutions that would be prohibitively painful to add. ### So, why should I use it? Features and functionality that set it apart: * Uses the Python standard load(s)/dump(s) API. * Can load filepaths, os.PathLike objects, file-like objects, and bytes-like objects. * Metadata objects look like a dict **and** act like a dict. * Some common libraries shadow the representation of a dict and/or dict methods but do not behave like a dict. * Supports attribute-style access that can be mixed with dict key-subscription. * All metadata objects have user-friendly representations. * This includes *humanized* representations of certain values like filesize, bitrate, duration, and sample rate. ``` >>> import audio_metadata >>> metadata = audio_metadata.load('05 - Heart of Hearts.flac') >>> metadata <FLAC ({ 'filepath': '05 - Heart of Hearts.flac', 'filesize': '44.23 MiB', 'pictures': [], 'seektable': <FLACSeekTable (37 seekpoints)>, 'streaminfo': <FLACStreamInfo ({ 'bit_depth': 16, 'bitrate': '1022 Kbps', 'channels': 2, 'duration': '06:03', 'md5': '3ae700893d099a5d281a5d8db7847671', 'sample_rate': '44.1 KHz', })>, 'tags': <VorbisComment ({ 'album': ['Myth Takes'], 'artist': ['!!!'], 'bpm': ['119'], 'date': ['2007'], 'genre': ['Dance Punk'], 'title': ['Heart of Hearts'], 'tracknumber': ['05'], })>, })> >>> metadata['streaminfo'] <FLACStreamInfo ({ 'bit_depth': 16, 'bitrate': '1022 Kbps', 'channels': 2, 'duration': '06:03', 'md5': '3ae700893d099a5d281a5d8db7847671', 'sample_rate': '44.1 KHz', })> >>> metadata.streaminfo.bitrate 1022134.0362995076 >>> metadata.streaminfo['duration'] 362.9066666666667 >>> metadata['streaminfo'].sample_rate 44100 ``` ## Installation ``pip install -U audio-metadata`` ## Usage For the release version, see the [stable docs](https://audio-metadata.readthedocs.io/en/stable/). For the development version, see the [latest docs](https://audio-metadata.readthedocs.io/en/latest/). The high-level API and basic usage are covered, but more advanced features/functionality need documentation. ## TODO If you're willing to [contribute](https://github.com/thebigmunch/audio-metadata/blob/master/.github/CONTRIBUTING.md) your time to work on [audio-metadata](https://github.com/thebigmunch/audio-metadata/), you can: * Post in the [Development](https://forum.thebigmunch.me/c/dev/) category on the [Discourse forum](https://forum.thebigmunch.me/). * Browse and comment on [issues](https://github.com/thebigmunch/audio-metadata/issues) or [pull requests](https://github.com/thebigmunch/audio-metadata/pulls). * [Open an issue](https://github.com/thebigmunch/audio-metadata/issues/new) with a bug report or feature request. * See current [projects](https://github.com/thebigmunch/audio-metadata/projects). * Contact me by email at mail@thebigmunch.me. ## Appreciation Showing appreciation is always welcome. #### Thank [![Say Thanks](https://img.shields.io/badge/thank-thebigmunch-blue.svg?style=flat-square)](https://saythanks.io/to/thebigmunch) Get your own thanks inbox at [SayThanks.io](https://saythanks.io/). #### Contribute [Contribute](https://github.com/thebigmunch/audio-metadata/blob/master/.github/CONTRIBUTING.md) by submitting bug reports, feature requests, or code. #### Help Others/Stay Informed [Discourse forum](https://forum.thebigmunch.me/) #### Referrals/Donations [![Digital Ocean](https://img.shields.io/badge/Digital_Ocean-referral-orange.svg?style=flat-square)](https://bit.ly/DigitalOcean-tbm-referral) [![Namecheap](https://img.shields.io/badge/Namecheap-referral-orange.svg?style=flat-square)](http://bit.ly/Namecheap-tbm-referral) [![PayPal](https://img.shields.io/badge/PayPal-donate-brightgreen.svg?style=flat-square)](https://bit.ly/PayPal-thebigmunch)


نیازمندی

مقدار نام
>=18.2,<19.4 attrs
<1.0.0 bidict
>=6.0,<9.0 bitstruct
>=4.0,<9.0 more-itertools
>=2.0,<=3.0,!=2.0.5,!=2.1.0 pendulum
<1.0.0 pprintpp
>=2.3,<3.0 tbm-utils
>=1.0,<2.0 wrapt
>=5.0,<6.0) coverage[toml]
>=3.5,<4.0) flake8
>=1.0,<2.0) flake8-builtins
>=2.0,<=4.0) flake8-comprehensions
>=0.18,<0.19) flake8-import-order
>=1.0,<2.0) flake8-import-order-tbm
>=2019,<2020) nox
>=2.0,<3.0) sphinx
<1.0.0) sphinx-material
>=0.42.0-beta.0) ward


زبان مورد نیاز

مقدار نام
>=3.6,<4.0 Python


نحوه نصب


نصب پکیج whl audio-metadata-0.9.0:

    pip install audio-metadata-0.9.0.whl


نصب پکیج tar.gz audio-metadata-0.9.0:

    pip install audio-metadata-0.9.0.tar.gz