mirror of
https://github.com/iluvcapra/wavinfo.git
synced 2025-12-31 17:00:41 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
453606d5b7 | ||
|
|
2ae3a69d56 | ||
|
|
14b9cbb496 | ||
|
|
83742cc15e |
4
.github/workflows/pythonpublish.yml
vendored
4
.github/workflows/pythonpublish.yml
vendored
@@ -16,13 +16,13 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install setuptools wheel twine lxml
|
pip install setuptools build wheel twine lxml
|
||||||
- name: Build and publish
|
- name: Build and publish
|
||||||
env:
|
env:
|
||||||
TWINE_USERNAME: __token__
|
TWINE_USERNAME: __token__
|
||||||
TWINE_PASSWORD: ${{ secrets.PYPI_APIKEY }}
|
TWINE_PASSWORD: ${{ secrets.PYPI_APIKEY }}
|
||||||
run: |
|
run: |
|
||||||
python setup.py sdist bdist_wheel
|
python -m build .
|
||||||
twine upload dist/*
|
twine upload dist/*
|
||||||
- name: Report to Mastodon
|
- name: Report to Mastodon
|
||||||
uses: cbrgm/mastodon-github-action@v1.0.1
|
uses: cbrgm/mastodon-github-action@v1.0.1
|
||||||
|
|||||||
@@ -16,13 +16,13 @@ The `wavinfo` package allows you to probe WAVE and [RF64/WAVE files][eburf64] an
|
|||||||
* [Dolby Digital Plus][ebu3285s6] and Dolby Atmos `dbmd` metadata.
|
* [Dolby Digital Plus][ebu3285s6] and Dolby Atmos `dbmd` metadata.
|
||||||
* [iXML][ixml] production recorder metadata, including project, scene, and take tags, recorder notes
|
* [iXML][ixml] production recorder metadata, including project, scene, and take tags, recorder notes
|
||||||
and file family information.
|
and file family information.
|
||||||
|
* iXML `STEINBERG` sound library attributes.
|
||||||
* Most of the common [RIFF INFO][info-tags] metadata fields.
|
* Most of the common [RIFF INFO][info-tags] metadata fields.
|
||||||
* The __wav format__ is also parsed, so you can access the basic sample rate and channel count
|
* The __wav format__ is also parsed, so you can access the basic sample rate and channel count
|
||||||
information.
|
information.
|
||||||
|
|
||||||
In progress:
|
In progress:
|
||||||
* Pro Tools __embedded regions__.
|
* Pro Tools __embedded regions__.
|
||||||
* iXML `STEINBERG` sound library attributes.
|
|
||||||
|
|
||||||
[bext]:https://wavinfo.readthedocs.io/en/latest/scopes/bext.html
|
[bext]:https://wavinfo.readthedocs.io/en/latest/scopes/bext.html
|
||||||
[smpte_330m2011]:https://wavinfo.readthedocs.io/en/latest/scopes/bext.html#wavinfo.wave_bext_reader.WavBextReader.umid
|
[smpte_330m2011]:https://wavinfo.readthedocs.io/en/latest/scopes/bext.html#wavinfo.wave_bext_reader.WavBextReader.umid
|
||||||
|
|||||||
@@ -1,25 +0,0 @@
|
|||||||
alabaster==0.7.12
|
|
||||||
Babel==2.11.0
|
|
||||||
certifi==2022.9.24
|
|
||||||
charset-normalizer==2.1.1
|
|
||||||
docutils==0.17.1
|
|
||||||
idna==3.4
|
|
||||||
imagesize==1.4.1
|
|
||||||
Jinja2==3.1.2
|
|
||||||
lxml==4.9.1
|
|
||||||
MarkupSafe==2.1.1
|
|
||||||
packaging==21.3
|
|
||||||
Pygments==2.13.0
|
|
||||||
pyparsing==3.0.9
|
|
||||||
pytz==2022.6
|
|
||||||
requests==2.28.1
|
|
||||||
snowballstemmer==2.2.0
|
|
||||||
Sphinx==5.3.0
|
|
||||||
sphinx-rtd-theme==1.1.1
|
|
||||||
sphinxcontrib-applehelp==1.0.2
|
|
||||||
sphinxcontrib-devhelp==1.0.2
|
|
||||||
sphinxcontrib-htmlhelp==2.0.0
|
|
||||||
sphinxcontrib-jsmath==1.0.1
|
|
||||||
sphinxcontrib-qthelp==1.0.3
|
|
||||||
sphinxcontrib-serializinghtml==1.1.5
|
|
||||||
urllib3==1.26.12
|
|
||||||
@@ -5,5 +5,5 @@ Probe WAVE Files for iXML, Broadcast-WAVE and other metadata.
|
|||||||
from .wave_reader import WavInfoReader
|
from .wave_reader import WavInfoReader
|
||||||
from .riff_parser import WavInfoEOFError
|
from .riff_parser import WavInfoEOFError
|
||||||
|
|
||||||
__version__ = '2.2.0'
|
__version__ = '2.2.1'
|
||||||
__short_version__ = '2.2.0'
|
__short_version__ = '2.2.1'
|
||||||
|
|||||||
Reference in New Issue
Block a user