From 0aaccbb258f65f0a13eacfd002625e72db275680 Mon Sep 17 00:00:00 2001 From: yomguy Date: Sun, 17 Feb 2013 23:29:18 +0100 Subject: [PATCH] update pkg-info --- TimeSide.egg-info/PKG-INFO | 22 ++++++++++++++++++---- TimeSide.egg-info/SOURCES.txt | 8 ++++---- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/TimeSide.egg-info/PKG-INFO b/TimeSide.egg-info/PKG-INFO index 5570e45..35d3ed2 100644 --- a/TimeSide.egg-info/PKG-INFO +++ b/TimeSide.egg-info/PKG-INFO @@ -1,10 +1,10 @@ Metadata-Version: 1.0 Name: TimeSide -Version: 0.4.2 +Version: 0.4.3 Summary: open and fast web audio components Home-page: http://code.google.com/p/timeside -Author: ['Guillaume Pellerin', 'Olivier Guilyardi', 'Riccardo Zaccarelli', 'Paul Brossier'] -Author-email: ['yomguy@parisson.com', 'olivier@samalyse.com', 'riccardo.zaccarelli@gmail.com', 'piem@piem.org'] +Author: Guillaume Pellerin, Paul Brossier, Riccardo Zaccarelli, Olivier Guilyardi +Author-email: yomguy@parisson.com, piem@piem.org, riccardo.zaccarelli@gmail.com, olivier@samalyse.com License: Gnu Public License V2 Description: ============================================== TimeSide : open and fast web audio components @@ -15,7 +15,7 @@ Description: ============================================== TimeSide is a set of python components enabling easy audio processing, transcoding, imaging and streaming. Its simple architecture and high-level API have been design to process serial pipelines. - It includes a powerfull HTM5 interactive player which can be embedded in any web application to provide fancy waveforms, various analyzer results, synced time metadata display during playback and remote indexing. + It includes a powerfull HTM5 interactive player which can be embedded in any web application to provide fancy waveforms, various analyzer results, synced time metadata display during playback (time-marking) and remote indexing. The engine (server side) is fully written in Python, the player (client side) in HTML, CSS and JavaScript. @@ -40,6 +40,16 @@ Description: ============================================== News ===== + 0.4.3 + + * finally fix decoder leaks and de-synchronizations (thanks to piem) + * this also fixes bad variable encoder file lengths + * fix OGG and FLAC encoders (closes: #8) + * fix multi-channels streaming (closes: #13) + * add support for Pillow (closes: #12) + * temporally desactivate AAC and WebM encoders (need to add some limits for them) + * WARNING : we now need to add overwrite=True to encoder kwargs instances in order to overwrite the destination file, i.e. e=Mp3Encoder(path, overwrite=True) + 0.4.2 * many releases these days, but there are some patches which are really worth to be HOT released : we just need them in production.. @@ -222,10 +232,14 @@ Description: ============================================== Keywords: audio analyze transcode graph player metadata Platform: OS Independent Classifier: Intended Audience :: Science/Research +Classifier: Intended Audience :: Developers +Classifier: Intended Audience :: Information Technology Classifier: Programming Language :: Python Classifier: Programming Language :: JavaScript Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content Classifier: Topic :: Multimedia :: Sound/Audio Classifier: Topic :: Multimedia :: Sound/Audio :: Analysis Classifier: Topic :: Multimedia :: Sound/Audio :: Players +Classifier: Topic :: Multimedia :: Sound/Audio :: Conversion Classifier: Topic :: Scientific/Engineering :: Information Analysis +Classifier: Topic :: Software Development :: Libraries :: Python Modules diff --git a/TimeSide.egg-info/SOURCES.txt b/TimeSide.egg-info/SOURCES.txt index 2fafbbe..9341478 100644 --- a/TimeSide.egg-info/SOURCES.txt +++ b/TimeSide.egg-info/SOURCES.txt @@ -2,6 +2,7 @@ AUTHORS LICENSE MANIFEST.in README.rst +requirements.txt setup.py doc/img/timeside_schema.dia doc/img/timeside_schema.png @@ -26,6 +27,7 @@ tests/api/test_aubio_bpm.py tests/api/test_aubio_onsetrate.py tests/api/test_enc_flac.py tests/api/test_enc_mp3.py +tests/api/test_enc_mp3_by_block.py tests/api/test_enc_ogg.py tests/api/test_enc_webm.py tests/api/test_flac.py @@ -52,6 +54,8 @@ timeside/core.py timeside/exceptions.py timeside/metadata.py timeside/analyzer/__init__.py +timeside/analyzer/aubio_bpm.py +timeside/analyzer/aubio_onsetrate.py timeside/analyzer/core.py timeside/analyzer/dc.py timeside/analyzer/max_level.py @@ -60,22 +64,18 @@ timeside/analyzer/vamp/__init__.py timeside/analyzer/vamp/core.py timeside/decoder/__init__.py timeside/decoder/core.py -timeside/decoder/subprocess.py timeside/encoder/__init__.py timeside/encoder/core.py timeside/encoder/flac.py timeside/encoder/m4a.py timeside/encoder/mp3.py timeside/encoder/ogg.py -timeside/encoder/subprocess.py timeside/encoder/wav.py timeside/encoder/webm.py timeside/grapher/__init__.py timeside/grapher/core.py timeside/grapher/spectrogram.py -timeside/grapher/spectrogram_audiolab.py timeside/grapher/waveform.py -timeside/grapher/waveform_audiolab.py timeside/grapher/waveform_contour_bk.py timeside/grapher/waveform_contour_wh.py timeside/grapher/waveform_simple.py -- 2.39.5