{ "info": { "author": "Department of Computational Perception, Johannes Kepler University, Linz, Austria and Austrian Research Institute for Artificial Intelligence (OFAI), Vienna, Austria", "author_email": "madmom-users@googlegroups.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Console", "License :: Free for non-commercial use", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Multimedia :: Sound/Audio :: Analysis", "Topic :: Scientific/Engineering :: Artificial Intelligence" ], "description": "======\nmadmom\n======\n\nMadmom is an audio signal processing library written in Python with a strong\nfocus on music information retrieval (MIR) tasks.\n\nThe library is internally used by the Department of Computational Perception,\nJohannes Kepler University, Linz, Austria (http://www.cp.jku.at) and the\nAustrian Research Institute for Artificial Intelligence (OFAI), Vienna, Austria\n(http://www.ofai.at).\n\nPossible acronyms are:\n\n- Madmom Analyzes Digitized Music Of Musicians\n- Mostly Audio / Dominantly Music Oriented Modules\n\nIt includes reference implementations for some music information retrieval\nalgorithms, please see the `References`_ section.\n\n\nDocumentation\n=============\n\nDocumentation of the package can be found online http://madmom.readthedocs.org\n\n\nLicense\n=======\n\nThe package has two licenses, one for source code and one for model/data files.\n\nSource code\n-----------\n\nUnless indicated otherwise, all source code files are published under the BSD\nlicense. For details, please see the `LICENSE `_ file.\n\nModel and data files\n--------------------\n\nUnless indicated otherwise, all model and data files are distributed under the\n`Creative Commons Attribution-NonCommercial-ShareAlike 4.0\n`_ license.\n\nIf you want to include any of these files (or a variation or modification\nthereof) or technology which utilises them in a commercial product, please\ncontact `Gerhard Widmer `_.\n\n\nInstallation\n============\n\nPlease do not try to install from the .zip files provided by GitHub. Rather\ninstall it from package (if you just want to use it) or source (if you plan to\nuse it for development) by following the instructions below. Whichever variant\nyou choose, please make sure that all prerequisites are installed.\n\nPrerequisites\n-------------\n\nTo install the ``madmom`` package, you must have either Python 2.7 or Python\n3.3 or newer and the following packages installed:\n\n- `numpy `_\n- `scipy `_\n- `cython `_\n- `mido `_ (for MIDI handling)\n- `pytest `_ (to run the tests)\n- `pyaudio `_ (to process live\n audio input)\n- `pyfftw `_ (for better FFT performance)\n\nIf you need support for audio files other than ``.wav`` with a sample rate of\n44.1kHz and 16 bit depth, you need ``ffmpeg`` (``avconv`` on Ubuntu Linux has\nsome decoding bugs, so we advise not to use it!).\n\nPlease refer to the `requirements.txt `_ file for the minimum\nrequired versions and make sure that these modules are up to date, otherwise it\ncan result in unexpected errors or false computations!\n\nInstall from package\n--------------------\n\nThe instructions given here should be used if you just want to install the\npackage, e.g. to run the bundled programs or use some functionality for your\nown project. If you intend to change anything within the `madmom` package,\nplease follow the steps in the next section.\n\nThe easiest way to install the package is via ``pip`` from the `PyPI (Python\nPackage Index) `_::\n\n pip install madmom\n\nThis includes the latest code and trained models and will install all\ndependencies automatically.\n\nYou might need higher privileges (use su or sudo) to install the package, model\nfiles and scripts globally. Alternatively you can install the package locally\n(i.e. only for you) by adding the ``--user`` argument::\n\n pip install --user madmom\n\nThis will also install the executable programs to a common place (e.g.\n``/usr/local/bin``), which should be in your ``$PATH`` already. If you\ninstalled the package locally, the programs will be copied to a folder which\nmight not be included in your ``$PATH`` (e.g. ``~/Library/Python/2.7/bin``\non Mac OS X or ``~/.local/bin`` on Ubuntu Linux, ``pip`` will tell you). Thus\nthe programs need to be called explicitely or you can add their install path\nto your ``$PATH`` environment variable::\n\n export PATH='path/to/scripts':$PATH\n\nInstall from source\n-------------------\n\nIf you plan to use the package as a developer, clone the Git repository::\n\n git clone --recursive https://github.com/CPJKU/madmom.git\n\nSince the pre-trained model/data files are not included in this repository but\nrather added as a Git submodule, you either have to clone the repo recursively.\nThis is equivalent to these steps::\n\n git clone https://github.com/CPJKU/madmom.git\n cd madmom\n git submodule update --init --remote\n\nThen you can simply install the package in development mode::\n\n python setup.py develop --user\n\nTo run the included tests::\n\n python setup.py pytest\n\nUpgrade of existing installations\n---------------------------------\n\nTo upgrade the package, please use the same mechanism (pip vs. source) as you\ndid for installation. If you want to change from package to source, please\nuninstall the package first.\n\nUpgrade a package\n~~~~~~~~~~~~~~~~~\n\nSimply upgrade the package via pip::\n\n pip install --upgrade madmom [--user]\n\nIf some of the provided programs or models changed (please refer to the\nCHANGELOG) you should first uninstall the package and then reinstall::\n\n pip uninstall madmom\n pip install madmom [--user]\n\nUpgrade from source\n~~~~~~~~~~~~~~~~~~~\n\nSimply pull the latest sources::\n\n git pull\n\nTo update the models contained in the submodule::\n\n git submodule update\n\nIf any of the ``.pyx`` or ``.pxd`` files changed, you have to recompile the\nmodules with Cython::\n\n python setup.py build_ext --inplace\n\nPackage structure\n-----------------\n\nThe package has a very simple structure, divided into the following folders:\n\n`/bin `_\n this folder includes example programs (i.e. executable algorithms)\n`/docs `_\n package documentation\n`/madmom `_\n the actual Python package\n`/madmom/audio `_\n low level features (e.g. audio file handling, STFT)\n`/madmom/evaluation `_\n evaluation code\n`/madmom/features `_\n higher level features (e.g. onsets, beats)\n`/madmom/ml `_\n machine learning stuff (e.g. RNNs, HMMs)\n`/madmom/models <../../../madmom_models>`_\n pre-trained model/data files (see the License section)\n`/madmom/utils `_\n misc stuff (e.g. MIDI and general file handling)\n`/tests `_\n tests\n\nExecutable programs\n-------------------\n\nThe package includes executable programs in the `/bin `_ folder.\nIf you installed the package, they were copied to a common place.\n\nAll scripts can be run in different modes: in ``single`` file mode to process\na single audio file and write the output to STDOUT or the given output file::\n\n DBNBeatTracker single [-o OUTFILE] INFILE\n\nIf multiple audio files should be processed, the scripts can also be run in\n``batch`` mode to write the outputs to files with the given suffix::\n\n DBNBeatTracker batch [-o OUTPUT_DIR] [-s OUTPUT_SUFFIX] FILES\n\nIf no output directory is given, the program writes the output files to the\nsame location as the audio files.\n\nSome programs can also be run in ``online`` mode, i.e. operate on live audio\nsignals. This requires `pyaudio `_\nto be installed::\n\n DBNBeatTracker online [-o OUTFILE] [INFILE]\n\nThe ``pickle`` mode can be used to store the used parameters to be able to\nexactly reproduce experiments.\n\nPlease note that the program itself as well as the modes have help messages::\n\n DBNBeatTracker -h\n\n DBNBeatTracker single -h\n\n DBNBeatTracker batch -h\n\n DBNBeatTracker online -h\n\n DBNBeatTracker pickle -h\n\nwill give different help messages.\n\n\nAdditional resources\n====================\n\nMailing list\n------------\n\nThe `mailing list `_ should be\nused to get in touch with the developers and other users.\n\nWiki\n----\n\nThe wiki can be found here: https://github.com/CPJKU/madmom/wiki\n\nFAQ\n---\n\nFrequently asked questions can be found here:\nhttps://github.com/CPJKU/madmom/wiki/FAQ\n\nCitation\n========\n\nIf you use madmom in your work, please consider citing it:\n\n.. code-block:: latex\n\n @inproceedings{madmom,\n Title = {{madmom: a new Python Audio and Music Signal Processing Library}},\n Author = {B{\\\"o}ck, Sebastian and Korzeniowski, Filip and Schl{\\\"u}ter, Jan and Krebs, Florian and Widmer, Gerhard},\n Booktitle = {Proceedings of the 24th ACM International Conference on\n Multimedia},\n Month = {10},\n Year = {2016},\n Pages = {1174--1178},\n Address = {Amsterdam, The Netherlands},\n Doi = {10.1145/2964284.2973795}\n }\n\nReferences\n==========\n\n.. [1] Florian Eyben, Sebastian B\u00f6ck, Bj\u00f6rn Schuller and Alex Graves,\n *Universal Onset Detection with bidirectional Long Short-Term Memory\n Neural Networks*,\n Proceedings of the 11th International Society for Music Information\n Retrieval Conference (ISMIR), 2010.\n.. [2] Sebastian B\u00f6ck and Markus Schedl,\n *Enhanced Beat Tracking with Context-Aware Neural Networks*,\n Proceedings of the 14th International Conference on Digital Audio Effects\n (DAFx), 2011.\n.. [3] Sebastian B\u00f6ck and Markus Schedl,\n *Polyphonic Piano Note Transcription with Recurrent Neural Networks*,\n Proceedings of the 37th International Conference on Acoustics, Speech and\n Signal Processing (ICASSP), 2012.\n.. [4] Sebastian B\u00f6ck, Andreas Arzt, Florian Krebs and Markus Schedl,\n *Online Real-time Onset Detection with Recurrent Neural Networks*,\n Proceedings of the 15th International Conference on Digital Audio Effects\n (DAFx), 2012.\n.. [5] Sebastian B\u00f6ck, Florian Krebs and Markus Schedl,\n *Evaluating the Online Capabilities of Onset Detection Methods*,\n Proceedings of the 13th International Society for Music Information\n Retrieval Conference (ISMIR), 2012.\n.. [6] Sebastian B\u00f6ck and Gerhard Widmer,\n *Maximum Filter Vibrato Suppression for Onset Detection*,\n Proceedings of the 16th International Conference on Digital Audio Effects\n (DAFx), 2013.\n.. [7] Sebastian B\u00f6ck and Gerhard Widmer,\n *Local Group Delay based Vibrato and Tremolo Suppression for Onset\n Detection*,\n Proceedings of the 13th International Society for Music Information\n Retrieval Conference (ISMIR), 2013.\n.. [8] Florian Krebs, Sebastian B\u00f6ck and Gerhard Widmer,\n *Rhythmic Pattern Modelling for Beat and Downbeat Tracking in Musical\n Audio*,\n Proceedings of the 14th International Society for Music Information\n Retrieval Conference (ISMIR), 2013.\n.. [9] Sebastian B\u00f6ck, Jan Schl\u00fcter and Gerhard Widmer,\n *Enhanced Peak Picking for Onset Detection with Recurrent Neural Networks*,\n Proceedings of the 6th International Workshop on Machine Learning and\n Music (MML), 2013.\n.. [10] Sebastian B\u00f6ck, Florian Krebs and Gerhard Widmer,\n *A Multi-Model Approach to Beat Tracking Considering Heterogeneous Music\n Styles*,\n Proceedings of the 15th International Society for Music Information\n Retrieval Conference (ISMIR), 2014.\n.. [11] Filip Korzeniowski, Sebastian B\u00f6ck and Gerhard Widmer,\n *Probabilistic Extraction of Beat Positions from a Beat Activation\n Function*,\n Proceedings of the 15th International Society for Music Information\n Retrieval Conference (ISMIR), 2014.\n.. [12] Sebastian B\u00f6ck, Florian Krebs and Gerhard Widmer,\n *Accurate Tempo Estimation based on Recurrent Neural Networks and\n Resonating Comb Filters*,\n Proceedings of the 16th International Society for Music Information\n Retrieval Conference (ISMIR), 2015.\n.. [13] Florian Krebs, Sebastian B\u00f6ck and Gerhard Widmer,\n *An Efficient State Space Model for Joint Tempo and Meter Tracking*,\n Proceedings of the 16th International Society for Music Information\n Retrieval Conference (ISMIR), 2015.\n.. [14] Sebastian B\u00f6ck, Florian Krebs and Gerhard Widmer,\n *Joint Beat and Downbeat Tracking with Recurrent Neural Networks*,\n Proceedings of the 17th International Society for Music Information\n Retrieval Conference (ISMIR), 2016.\n.. [15] Filip Korzeniowski and Gerhard Widmer,\n *Feature Learning for Chord Recognition: The Deep Chroma Extractor*,\n Proceedings of the 17th International Society for Music Information\n Retrieval Conference (ISMIR), 2016.\n.. [16] Florian Krebs, Sebastian B\u00f6ck, Matthias Dorfer and Gerhard Widmer,\n *Downbeat Tracking Using Beat-Synchronous Features and Recurrent Networks*,\n Proceedings of the 17th International Society for Music Information\n Retrieval Conference (ISMIR), 2016.\n.. [17] Filip Korzeniowski and Gerhard Widmer,\n *A Fully Convolutional Deep Auditory Model for Musical Chord Recognition*,\n Proceedings of IEEE International Workshop on Machine Learning for Signal\n Processing (MLSP), 2016.\n.. [18] Filip Korzeniowski and Gerhard Widmer,\n *Genre-Agnostic Key Classification with Convolutional Neural Networks*,\n Proceedings of the 19th International Society for Music Information\n Retrieval Conference (ISMIR), 2018.\n\nAcknowledgements\n================\n\nSupported by the European Commission through the `GiantSteps project\n`_ (FP7 grant agreement no. 610591) and the\n`Phenicx project `_ (FP7 grant agreement no. 601166)\nas well as the `Austrian Science Fund (FWF) `_ project\nZ159.\n\nRelease Notes\n=============\n\nVersion 0.16.1 (release date: 2017-11-14)\n-----------------------------------------\n\nThis is a maintenance release.\n\n* Include .pyx files in source distribution\n\nVersion 0.16 (release date: 2017-11-13)\n---------------------------------------\n\nNew features:\n\n* `TempoDetector` can operate on live audio signals (#292)\n* Added chord evaluation (#309)\n* Bar tracking functionality (#316)\n* Added `quantize_notes` function (#327)\n* Added global key evaluation (#336)\n* Added key recognition feature and program (#345, #381)\n\nBug fixes:\n\n* Fix `TransitionModel` number of states when last state is unreachable (#287)\n* Fix double beat detections in `BeatTrackingProcessor` (#298)\n* Fix ffmpeg unicode filename handling (#305)\n* Fix STFT zero padding (#319)\n* Fix memory leak when accessing signal frames (#322)\n* Quantization of events does not alter them (#327)\n\nAPI relevant changes:\n\n* `BufferProcessor` uses `data` instead of `buffer` for data storage (#292)\n* `DBNBeatTrackingProcessor` expects 1D inputs (#299)\n* Moved downbeat and pattern tracking to `features.downbeats` (#316)\n* Write/load functions moved to `io` module (#346)\n* Write functions do not return any data (#346)\n* Evaluation classes expect annotations/detections, cannot handle files (#346)\n* New MIDI module (io.midi) replacing (utils.midi) based on mido (#46)\n\nOther changes:\n\n* Viterbi decoding of `HMM` raises a warning if no valid path is found (#279)\n* Add option to include Nyquist frequency in `STFT` (#280)\n* Use `pyfftw` to compute FFT (#363)\n* Python 3.7 support (#374)\n* Use pytest instead of nose to run tests (#385)\n* Removed obsolete code (#385)\n\n\nVersion 0.15.1 (release date: 2017-07-07)\n-----------------------------------------\n\nThis is a maintenance release.\n\n* NumPy boolean subtract fix (#296)\n\n\nVersion 0.15 (release date: 2017-04-25)\n---------------------------------------\n\nNew features:\n\n* Streaming mode allows framewise processing of live audio input (#185)\n* Exponential linear unit (ELU) activation function (#232)\n* `DBNBeatTracker` can operate on live audio signals (#238)\n* `OnsetDetectorLL` can operate on live audio signals (#256)\n\nBug fixes:\n\n* Fix downbeat evaluation failure with a single annotation / detection (#216)\n* Fix tempo handling of multi-track MIDI files (#219)\n* Fix error loading unicode filenames (#223)\n* Fix ffmpeg unicode filename handling (#236)\n* Fix smoothing for `peak_picking` (#247)\n* Fix combining onsets/notes (#255)\n\nAPI relevant changes:\n\n* `NeuralNetwork` expect 2D inputs; activation can be computed stepwise (#244)\n* Reorder `GRUCell` parameters, to be consistent with all other layers (#243)\n* Rename `GRULayer` parameters, to be consistent with all other layers (#243)\n\nOther changes:\n\n* SPL and RMS can be computed on `Signal` and `FramedSignal` (#208)\n* `num_threads` is passed to `ParallelProcessor` in single mode (#217)\n* Use `install_requires` in `setup.py` to specify dependencies (#226)\n* Use new Cython build system to build extensions (#227)\n* Allow initialisation of previous/hidden states in RNNs (#243)\n* Forward path of `HMM` can be computed stepwise (#244)\n\n\nVersion 0.14.1 (release date: 2016-08-01)\n-----------------------------------------\n\nThis is a maintenance release.\n\n* `RNNDownBeatProcessor` returns only beat and downbeat activations (#197)\n* Update programs to reflect MIREX 2016 submissions (#198)\n\nVersion 0.14 (release date: 2016-07-28)\n---------------------------------------\n\nNew features:\n\n* Downbeat tracking based on Recurrent Neural Network (RNN) and Dynamic\n Bayesian Network (DBN) (#130)\n* Convolutional Neural Networks (CNN) and CNN onset detection (#133)\n* Linear-Chain Conditional Random Field (CRF) implementation (#144)\n* Deep Neural Network (DNN) based chroma vector extraction (#148)\n* CRF chord recognition using DNN chroma vectors (#148)\n* CNN chord recognition using CRF decoding (#152)\n* Initial Windows support (Python 2.7 only, no pip packages yet) (#157)\n* Gated Recurrent Unit (GRU) network layer (#167)\n\nBug fixes:\n\n* Fix downbeat output bug (#128)\n* MIDI file creation bug (#166)\n\nAPI relevant changes:\n\n* Refactored the `ml.rnn` to `ml.nn` and converted the models to pickles (#110)\n* Reordered the dimensions of comb_filters to time, freq, tau (#135)\n* `write_notes` uses `delimiter` instead of `sep` to separate columns (#155)\n* `LSTMLayer` takes `Gate` as arguments, all layers are callable (#161)\n* Replaced `online` parameter of `FramedSignalProcessor` by `origin` (#169)\n\nOther changes:\n\n* Added classes for onset/note/beat detection with RNNs to `features.*` (#118)\n* Add examples to docstrings of classes (#119)\n* Converted `madmom.modules` into a Python package (#125)\n* `match_files` can handle inexact matches (#137)\n* Updated beat tracking models to MIREX 2015 ones (#146)\n* Tempo and time signature can be set for created MIDI files (#166)\n\n\nVersion 0.13.2 (release date: 2016-06-09)\n-----------------------------------------\n\nThis is a bugfix release.\n\n* Fix custom filterbank in FilteredSpectrogram (#142)\n\nVersion 0.13.1 (release date: 2016-03-14)\n-----------------------------------------\n\nThis is a bugfix release.\n\n* Fix beat evaluation argument parsing (#116)\n\nVersion 0.13 (release date: 2016-03-07)\n---------------------------------------\n\nNew features:\n\n* Python 3 support (3.3+) (#15)\n* Online documentation available at http://madmom.readthedocs.org (#60)\n\nBug fixes:\n\n* Fix nasty unsigned indexing bug (#88)\n* MIDI note timing could get corrupted if `note_ticks_to_beats()` was called\n multiple times (#90)\n\nAPI relevant changes:\n\n* Renamed `DownBeatTracker` and all relevant classes to `PatternTracker` (#25)\n* Complete refactoring of the `features.beats_hmm` module (#52)\n* Unified negative index behaviour of `FramedSignal` (#72)\n* Removed pickling of data classes since it was not tested thoroughly (#81)\n* Reworked stacking of spectrogram differences (#82)\n* Renamed `norm_bands` argument of `MultiBandSpectrogram` to `norm_filters`\n (#83)\n\nOther changes:\n\n* Added alignment evaluation (#12)\n* Added continuous integration testing (#16)\n* Added `-o` option to both `single`/`batch` processing mode to not overwrite\n files accidentally in `single` mode (#18)\n* Removed `block_size` parameter from `FilteredSpectrogram` (#22)\n* Sample rate is always integer (#23)\n* Converted all docstrings to the numpydoc format (#48)\n* Batch processing continues if non-audio files are given (#53)\n* Added code quality checks (#61)\n* Added coverage measuring (#74)\n* Added `--down`` option to evaluate only downbeats (#76)\n* Removed option to normalise the observations (#95)\n* Moved filterbank related argument parser to `FilterbankProcessor` (#96)\n\nVersion 0.12.1 (release date: 2016-01-22)\n-----------------------------------------\n\nAdded Python 3 compatibility to setup.py (needed for the tutorials to work)\n\nVersion 0.12 (release date: 2015-10-16)\n---------------------------------------\n\nInitial public release of madmom", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/CPJKU/madmom", "keywords": "", "license": "BSD, CC BY-NC-SA", "maintainer": "", "maintainer_email": "", "name": "madmom", "package_url": "https://pypi.org/project/madmom/", "platform": "", "project_url": "https://pypi.org/project/madmom/", "project_urls": { "Homepage": "https://github.com/CPJKU/madmom" }, "release_url": "https://pypi.org/project/madmom/0.16.1/", "requires_dist": null, "requires_python": "", "summary": "Python audio signal processing library", "version": "0.16.1" }, "last_serial": 4485930, "releases": { "0.12": [ { "comment_text": "", "digests": { "md5": "68f134befe7e5dbf29c5a9d7f165124a", "sha256": "d21c7dd059c811bd8c5704c7fb18b3effa9f59d20224ca1cc6fae2cf70ae3df3" }, "downloads": -1, "filename": "madmom-0.12.tar.gz", "has_sig": false, "md5_digest": "68f134befe7e5dbf29c5a9d7f165124a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3802724, "upload_time": "2015-10-16T09:37:21", "url": "https://files.pythonhosted.org/packages/28/0e/752fa1aa85c99a18036be8e2301cef9fc60a02824bba962052aa32c017a6/madmom-0.12.tar.gz" } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "b1605898617d5a089be681c436f2f1a1", "sha256": "79b4fcffb3b1143e3ad80210cd095a5ff10c4f375d2f5451de69f68ad74410fc" }, "downloads": -1, "filename": "madmom-0.12.1.tar.gz", "has_sig": false, "md5_digest": "b1605898617d5a089be681c436f2f1a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3791811, "upload_time": "2016-01-22T08:26:36", "url": "https://files.pythonhosted.org/packages/c7/92/ec038532e1f174e0b9672662218b30faa4448c1438d4ba68b2289a7f8369/madmom-0.12.1.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "d864a5a0fffa01a2d7dd53d43aecb56d", "sha256": "4c5c01b2a1e106949c8d41533a3d4eccd0e57ab6529fea5ffe7b82b68caca270" }, "downloads": -1, "filename": "madmom-0.13.tar.gz", "has_sig": false, "md5_digest": "d864a5a0fffa01a2d7dd53d43aecb56d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3812891, "upload_time": "2016-03-07T11:52:52", "url": "https://files.pythonhosted.org/packages/f6/38/64a07d5cabc3099484b177f4ad6c8b8148a11b6a21206a0729a257e43e97/madmom-0.13.tar.gz" } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "395490aab6b04e23900a0fb2ff2cf402", "sha256": "0a553d17fc70d481718a640eb342667410e2ca8af5cec43e5459ab036b330bda" }, "downloads": -1, "filename": "madmom-0.13.1.tar.gz", "has_sig": false, "md5_digest": "395490aab6b04e23900a0fb2ff2cf402", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3813033, "upload_time": "2016-03-14T09:35:59", "url": "https://files.pythonhosted.org/packages/bb/5e/c2ef8193a8201c6fbc6b10fa5e44ea9e50a6a7643590de6fbf893809ecb9/madmom-0.13.1.tar.gz" } ], "0.13.2": [ { "comment_text": "", "digests": { "md5": "2b136d59c1f198e57c0f10f243f90edc", "sha256": "aa8fcd858bb29f016f425792df655f40040098052b065c0fa0a5393a6a70d171" }, "downloads": -1, "filename": "madmom-0.13.2.tar.gz", "has_sig": false, "md5_digest": "2b136d59c1f198e57c0f10f243f90edc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3812960, "upload_time": "2016-06-09T07:26:06", "url": "https://files.pythonhosted.org/packages/6a/c1/3a93ec4ce0be0b0f68409d5974137f9999a833976cceae971d876ff86a04/madmom-0.13.2.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "41e8c2a88512ba61b49d42fca83729a3", "sha256": "e0dcb65aba5fb8816a6792a44aca02f356b9003943079a5a9863d12fb2863d0a" }, "downloads": -1, "filename": "madmom-0.14.tar.gz", "has_sig": false, "md5_digest": "41e8c2a88512ba61b49d42fca83729a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16274422, "upload_time": "2016-07-28T11:43:56", "url": "https://files.pythonhosted.org/packages/8f/46/64dd93a1211e710a7b75a92c1fb223d601d391744f1c0829d7e7afe6791f/madmom-0.14.tar.gz" } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "8b80d8992444216e244e1300a7cdfaae", "sha256": "1a6b8a736e561d5adabd49f0946e531f2439a9d1af4dd5452b8188f4da97b170" }, "downloads": -1, "filename": "madmom-0.14.1.tar.gz", "has_sig": false, "md5_digest": "8b80d8992444216e244e1300a7cdfaae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14336383, "upload_time": "2016-08-01T16:58:32", "url": "https://files.pythonhosted.org/packages/14/06/0b9d9d1b271171e0d8c739856f51a7553dacf662e4a5753fc7c54655144f/madmom-0.14.1.tar.gz" } ], "0.15": [ { "comment_text": "", "digests": { "md5": "ebb8dfd0133de1833ae890013e54de62", "sha256": "8ad1e68be070a26095ec8c972b859a47c3cc86b51aebdcf672a39878c0e4af41" }, "downloads": -1, "filename": "madmom-0.15.tar.gz", "has_sig": false, "md5_digest": "ebb8dfd0133de1833ae890013e54de62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15666982, "upload_time": "2017-04-25T08:54:05", "url": "https://files.pythonhosted.org/packages/fb/cb/67f1a1e5a82e520d60899973e3ea0a96125a662ea2c7bd90a9147970fd60/madmom-0.15.tar.gz" } ], "0.15.1": [ { "comment_text": "", "digests": { "md5": "04065a917850fa564a83c7ba2e8641d1", "sha256": "2a1325b0c0932611cb8da3890cae6320540fba806881a9dc7957aa909568acee" }, "downloads": -1, "filename": "madmom-0.15.1.tar.gz", "has_sig": false, "md5_digest": "04065a917850fa564a83c7ba2e8641d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15667163, "upload_time": "2017-07-07T10:22:58", "url": "https://files.pythonhosted.org/packages/b7/bb/b9b88d504f5ed3d87dd8a952c4feb37165a96ba1015f912cd4d6f050d75f/madmom-0.15.1.tar.gz" } ], "0.16": [ { "comment_text": "", "digests": { "md5": "26647abf9cea0b490984b17b3be3f50a", "sha256": "7f63f18bfb5e54ba7ea59ad4e1713f489fd5409c9f1aaaf706757be6e4d9b042" }, "downloads": -1, "filename": "madmom-0.16.tar.gz", "has_sig": false, "md5_digest": "26647abf9cea0b490984b17b3be3f50a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20031952, "upload_time": "2018-11-13T14:08:45", "url": "https://files.pythonhosted.org/packages/cb/fd/72afb59ac0dc760df0abe7f60a8474e727d3cca96ac3b44b56b26d5e983e/madmom-0.16.tar.gz" } ], "0.16.1": [ { "comment_text": "", "digests": { "md5": "c800fb8499e10af554d3b3f43405169c", "sha256": "64a86a29106e7c4e0c5f4ec96801c2d1a8492db710e4fe27e097da5517d68cb2" }, "downloads": -1, "filename": "madmom-0.16.1.tar.gz", "has_sig": false, "md5_digest": "c800fb8499e10af554d3b3f43405169c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20040947, "upload_time": "2018-11-14T14:56:22", "url": "https://files.pythonhosted.org/packages/c7/a3/9f3de3e8068a3606331134d96b84c8db4f7624d6715be8ab3c1f56e6731d/madmom-0.16.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c800fb8499e10af554d3b3f43405169c", "sha256": "64a86a29106e7c4e0c5f4ec96801c2d1a8492db710e4fe27e097da5517d68cb2" }, "downloads": -1, "filename": "madmom-0.16.1.tar.gz", "has_sig": false, "md5_digest": "c800fb8499e10af554d3b3f43405169c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20040947, "upload_time": "2018-11-14T14:56:22", "url": "https://files.pythonhosted.org/packages/c7/a3/9f3de3e8068a3606331134d96b84c8db4f7624d6715be8ab3c1f56e6731d/madmom-0.16.1.tar.gz" } ] }