Count audio files in a directory.
Project description
audioinfo
A tool to check audio file durations in a directory.
Usage
Install the audioinfo package with:
pip install audioinfo
Check the help with:
$ audioinfo --help
usage: audioinfo [-h] [--directory DIRECTORY] [--ext EXT [EXT ...]] [--recurse] [--case-sensitive]
A tool to check the durations of audio files in a directory.
options:
-h, --help show this help message and exit
--directory DIRECTORY, -d DIRECTORY
The directory to search (default: ./)
--ext EXT [EXT ...], -e EXT [EXT ...]
The extension to search for (default: wav)
--recurse, -r Recurse into subdirectories (default: True)
--case-sensitive, -c Case sensitive search (default: False)
Examples
Check all audio files with the ".wav" in the current directory:
audioinfo --directory ./ --ext wav
The default directory is the current directory and the default extension is ".wav". Therefore you may precisely omit these options, like this:
audioinfo
Check all audio files with the ".wav" in the directory "~/Music":
audioinfo --directory ~/Music --ext wav
# or use the short form:
audioinfo -d ~/Music -e wav
Check all audio files with ".wav" and ".flac" suffixes in the directory "~/Music":
audioinfo --directory ~/Music --ext wav flac
Check audio files with the ".wav" suffix in the directory "~/Music" and do not recurse into subdirectories:
audioinfo --directory ~/Music --ext wav --recurse=false
License
This software is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for audioinfo-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e10c1b055684c0565e59c2aab912ea18bbb50d7671139cebcc2c82d8364ee3b |
|
MD5 | a10c491fb74bd80c81ec1dfb1c327065 |
|
BLAKE2b-256 | 49feee22acbf098fc16a5c14874c17a126e163639ec51b83fa4ada757aa106de |