#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Utility functions for dealing with files"""
from __future__ import annotations
import contextlib
import glob
import html as html_lib
import json
import os
from importlib import resources
from typing import Any
import msgpack
import pooch
import tomllib
from ..version import version as librosa_version
from .exceptions import ParameterError
__all__ = [
"find_files",
"example",
"ex",
"list_examples",
"example_info",
]
# Instantiate the pooch
__data_path = os.environ.get("LIBROSA_DATA_DIR", pooch.os_cache("librosa"))
__GOODBOY = pooch.create(
__data_path, base_url="https://librosa.org/data/audio/", registry=None
)
@contextlib.contextmanager
def _resource_file(package: str, resource: str):
"""Provide a context manager for accessing resources in a package.
This previously served as a shim wrapper to support Python < 3.9,
but now it's a convenience function to simplify path mangling.
"""
with resources.as_file(resources.files(package).joinpath(resource)) as path:
yield path
with _resource_file("librosa.util.example_data", "registry.txt") as reg:
__GOODBOY.load_registry(str(reg))
# We want to bypass version checks here to allow asynchronous updates for new releases
__GOODBOY.registry["version_index.msgpack"] = None
__GOODBOY.registry["bib_index.msgpack"] = None
with _resource_file("librosa.util.example_data", "index.json") as index, index.open("r") as _fdesc:
__TRACKMAP = json.load(_fdesc)
[docs]
def example(key: str, *, hq: bool = False, url: bool = False) -> str:
"""Retrieve the example recording identified by 'key'.
The first time an example is requested, it will be downloaded from
the remote repository over HTTPS.
All subsequent requests will use a locally cached copy of the recording.
For a list of examples (and their keys), see `librosa.util.list_examples`.
By default, local files will be cached in the directory given by
`pooch.os_cache('librosa')`. You can override this by setting
an environment variable ``LIBROSA_DATA_DIR`` prior to importing librosa:
>>> import os
>>> os.environ['LIBROSA_DATA_DIR'] = '/path/to/store/data'
>>> import librosa
Parameters
----------
key : str
The identifier for the track to load
hq : bool
If ``True``, return the high-quality version of the recording.
If ``False``, return the 22KHz mono version of the recording.
url : bool
If ``True``, return the URL to the example file instead of the local path.
If ``False`` (default), return the local path to the example file.
Returns
-------
path : str
The path or remote URL to the requested example file
Examples
--------
Load "Hungarian Dance #5" by Johannes Brahms
>>> y, sr = librosa.load(librosa.example('brahms'))
Load "Vibe Ace" by Kevin MacLeod (the example previously packaged with librosa)
in high-quality mode
>>> y, sr = librosa.load(librosa.example('vibeace', hq=True))
See Also
--------
librosa.util.list_examples
pooch.os_cache
"""
if key not in __TRACKMAP:
raise ParameterError(f"Unknown example key: {key}")
if hq:
ext = ".hq.ogg"
else:
ext = ".ogg"
remote_url = __TRACKMAP[key]["path"] + ext
if url:
return str(__GOODBOY.base_url + remote_url)
else:
return str(__GOODBOY.fetch(remote_url))
ex = example
"""Alias for example"""
[docs]
def list_examples() -> None:
"""List the available audio recordings included with librosa.
Each recording is given a unique identifier (e.g., "brahms" or "nutcracker"),
listed in the first column of the output.
A brief description is provided in the second column.
See Also
--------
util.example
util.example_info
"""
print("AVAILABLE EXAMPLES")
print("-" * 68)
for key in sorted(__TRACKMAP.keys()):
if key == "pibble":
# Shh... she's sleeping
continue
print(f"{key:10}\t{__TRACKMAP[key]['desc']}")
def _resolve_license_url(spdx_id: str) -> str | None:
"""Dynamically map SPDX identifiers to canonical Creative Commons URLs."""
spdx_id = spdx_id.upper()
if spdx_id == "CC0-1.0":
return "https://creativecommons.org/publicdomain/zero/1.0/"
if spdx_id == "CC-PDM-1.0":
return "https://creativecommons.org/publicdomain/mark/1.0/"
if spdx_id.startswith("CC-"):
parts = spdx_id.split("-")[1:]
if len(parts) >= 2:
version = parts[-1]
variant = "-".join(parts[:-1]).lower()
return f"https://creativecommons.org/licenses/{variant}/{version}/"
return None
[docs]
def example_info(key: str, *, html: bool = False) -> str | None:
"""Display licensing and metadata information for the given example recording.
The first time an example is requested, it will be downloaded from
the remote repository over HTTPS.
All subsequent requests will use a locally cached copy of the recording.
For a list of examples (and their keys), see `librosa.util.list_examples`.
By default, local files will be cached in the directory given by
`pooch.os_cache('librosa')`. You can override this by setting
an environment variable ``LIBROSA_DATA_DIR`` prior to importing librosa.
Parameters
----------
key : str
The identifier for the recording (see `list_examples`)
html : bool
If ``True``, return the information in HTML format.
If ``False``, print the information in plain text format.
Returns
-------
info : str or None
If `html` is ``True``, return the HTML formatted string.
Otherwise, no return value.
See Also
--------
librosa.util.example
librosa.util.list_examples
pooch.os_cache
"""
if key not in __TRACKMAP:
raise ParameterError(f"Unknown example key: {key}")
license_file = __GOODBOY.fetch(__TRACKMAP[key]["path"] + ".toml")
with open(license_file, "rb") as fdesc:
data = tomllib.load(fdesc)
title = data["title"]
attribution = data["attribution"]
description = data["description"]
spdx_id = data["license"]
corpus = data.get("corpus", None)
url = data.get("url", None)
if html:
title_h = html_lib.escape(title)
attr_h = html_lib.escape(attribution)
desc_h = html_lib.escape(description).replace("\n", "<br>")
spdx_h = html_lib.escape(spdx_id)
corpus_h = ""
if corpus:
corpus_h = f"<div><strong>Corpus:</strong> {html_lib.escape(corpus)}</div>"
url_h = ""
if url:
url_h = f'<div><strong>Source:</strong> <a href="{html_lib.escape(url)}">{html_lib.escape(url)}</a></div>'
license_url = _resolve_license_url(spdx_h)
license_html = f'<a href="{license_url}">{spdx_h}</a>' if license_url else spdx_h
return f"""
<div class="sd-card sd-shadow-sm sd-mb-2">
<div class="sd-card-header sd-font-weight-bold sd-fs-5">
{title_h}
</div>
<div class="sd-card-body sd-p-3">
<div class="sd-card-text sd-text-muted sd-fs-6">
<strong>By:</strong> {attr_h} | <strong>License:</strong> {license_html}{url_h}
</div>
{corpus_h}
<details>
<summary>Description</summary>
<p class="sd-card-text sd-mb-2">{desc_h}</p>
</details>
</div>
</div>
"""
else:
lines = [
title,
"=" * len(title),
f"Attribution: {attribution}"
]
if corpus:
lines.append(f"Corpus: {corpus}")
lines.append(f"License: {spdx_id}")
if url:
lines.append(f"Source: {url}")
lines.extend(["", description.strip()])
print("\n".join(lines))
return None
[docs]
def find_files(
directory: str | os.PathLike[Any],
*,
ext: str | list[str] | None = None,
recurse: bool = True,
case_sensitive: bool = False,
limit: int | None = None,
offset: int = 0,
) -> list[str]:
"""Get a sorted list of (audio) files in a directory or directory sub-tree.
Examples
--------
>>> # Get all audio files in a directory sub-tree
>>> files = librosa.util.find_files('~/Music')
>>> # Look only within a specific directory, not the sub-tree
>>> files = librosa.util.find_files('~/Music', recurse=False)
>>> # Only look for mp3 files
>>> files = librosa.util.find_files('~/Music', ext='mp3')
>>> # Or just mp3 and ogg
>>> files = librosa.util.find_files('~/Music', ext=['mp3', 'ogg'])
>>> # Only get the first 10 files
>>> files = librosa.util.find_files('~/Music', limit=10)
>>> # Or last 10 files
>>> files = librosa.util.find_files('~/Music', offset=-10)
>>> # Avoid including search patterns in the path string
>>> import glob
>>> directory = '~/[202206] Music'
>>> directory = glob.escape(directory) # Escape the special characters
>>> files = librosa.util.find_files(directory)
Parameters
----------
directory : str
Path to look for files
ext : str or list of str
A file extension or list of file extensions to include in the search.
Default: ``['aac', 'au', 'flac', 'm4a', 'mp3', 'ogg', 'wav']``
recurse : bool
If ``True``, then all subfolders of ``directory`` will be searched.
Otherwise, only ``directory`` will be searched.
case_sensitive : bool
If ``False``, files matching upper-case version of
extensions will be included.
limit : int > 0 or None
Return at most ``limit`` files. If ``None``, all files are returned.
offset : int
Return files starting at ``offset`` within the list.
Use negative values to offset from the end of the list.
Returns
-------
files : list of str
The list of audio files.
"""
if ext is None:
ext = ["aac", "au", "flac", "m4a", "mp3", "ogg", "wav"]
elif isinstance(ext, str):
ext = [ext]
# Cast into a set
ext = set(ext)
# Generate upper-case versions
if not case_sensitive:
# Force to lower-case
ext = {e.lower() for e in ext}
# Add in upper-case versions
ext |= {e.upper() for e in ext}
fileset = set()
if recurse:
for walk in os.walk(directory): # type: ignore
fileset |= __get_files(walk[0], ext)
else:
fileset = __get_files(directory, ext)
files = list(fileset)
files.sort()
files = files[offset:]
if limit is not None:
files = files[:limit]
return files
def __get_files(dir_name: str | os.PathLike[Any], extensions: set[str]):
"""Get a list of files in a single directory"""
# Expand out the directory
dir_name = os.path.abspath(os.path.expanduser(dir_name))
myfiles = set()
for sub_ext in extensions:
globstr = os.path.join(dir_name, "*" + os.path.extsep + sub_ext)
myfiles |= set(glob.glob(globstr))
return myfiles
[docs]
def cite(version: str | None=None, *, bib: bool = False) -> str:
r"""Print the citation information for librosa.
Parameters
----------
version : str or None
The version of librosa to cite. If None, the current version is used.
bib : bool
If True, return the BibTeX entry for the given version of librosa.
If False (default), return the DOI for the given version of librosa.
Returns
-------
doi : str
The DOI for the given version of librosa.
Raises
------
ParameterError
If the requested version is not found in the citation index.
Examples
--------
>>> librosa.cite("0.10.1")
"https://doi.org/10.5281/zenodo.8252662"
>>> bib = librosa.cite("0.11.0", bib=True)
>>> print(bib[:140], "...")
@misc{https://doi.org/10.5281/zenodo.15006942,
doi = {10.5281/ZENODO.15006942},
url = {https://zenodo.org/doi/10.5281/zenodo.15006942},
...
"""
if version is None:
version = librosa_version
version_data = __GOODBOY.fetch("version_index.msgpack")
with open(version_data, "rb") as fdesc:
version_index: dict[str, str] = msgpack.load(fdesc)
if version not in version_index:
if "dev" in version:
raise ParameterError(f"Version {version} is not yet released and "
"therefore does not yet have a citable DOI.")
else:
raise ParameterError(f"Version {version} not found in the citation index")
if bib:
bib_data = __GOODBOY.fetch("bib_index.msgpack")
with open(bib_data, "rb") as fdesc:
bib_index: dict[str, str] = msgpack.load(fdesc)
try:
return bib_index[version]
except KeyError as exc:
raise ParameterError(f"No BibTeX entry found for version {version}.") from exc
return f"https://doi.org/{version_index[version]}"