]> git.parisson.com Git - timeside.git/commitdiff
add news and descriptions, go to 0.4.3
authoryomguy <yomguy@parisson.com>
Tue, 12 Feb 2013 12:25:05 +0000 (13:25 +0100)
committeryomguy <yomguy@parisson.com>
Tue, 12 Feb 2013 12:25:05 +0000 (13:25 +0100)
README.rst
setup.py
timeside/encoder/__init__.py

index 861719bd633b57353d30b46bb7d26ffa712ed8f9..74b02e52f645f90e168da8663fd864262bbe01e9 100644 (file)
@@ -32,6 +32,14 @@ Here is a schematic diagram of the TimeSide engine architecture:
 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)
+
 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..
index d83e7ac272050802189778c79bfcc72a999369a9..d89ab7db5ac88e81d843aa88e00c2b69fd8f5f21 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -4,13 +4,18 @@ from setuptools import setup, find_packages
 
 CLASSIFIERS = [
     'Intended Audience :: Science/Research',
+    'Intended Audience :: Developers',
+    'Intended Audience :: Information Technology',
     'Programming Language :: Python',
     'Programming Language :: JavaScript',
     'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
     'Topic :: Multimedia :: Sound/Audio',
     'Topic :: Multimedia :: Sound/Audio :: Analysis',
     'Topic :: Multimedia :: Sound/Audio :: Players',
-    'Topic :: Scientific/Engineering :: Information Analysis', ]
+    'Topic :: Multimedia :: Sound/Audio :: Conversion',
+    'Topic :: Scientific/Engineering :: Information Analysis',
+    'Topic :: Software Development :: Libraries :: Python Modules',
+    ]
 
 KEYWORDS = 'audio analyze transcode graph player metadata'
 
@@ -19,7 +24,7 @@ setup(
   url='http://code.google.com/p/timeside',
   description = "open and fast web audio components",
   long_description = open('README.rst').read(),
-  author = ["Guillaume Pellerin", "Olivier Guilyardi", "Riccardo Zaccarelli", "Paul Brossier"],
+  author = "Guillaume Pellerin, Olivier Guilyardi, Paul Brossier, Riccardo Zaccarelli",
   author_email = ["yomguy@parisson.com","olivier@samalyse.com", "riccardo.zaccarelli@gmail.com", "piem@piem.org"],
   version = '0.4.3',
   install_requires = [
index b8e431e29e2153c9aa84ffc01635f4dd91bff9d2..77490452ef83207e2e4e8e0f7d5fedefd0305ee5 100644 (file)
@@ -5,5 +5,5 @@ from ogg import *
 from wav import *
 from mp3 import *
 from flac import *
-#from m4a import *
-#from webm import *
+# from m4a import *
+# from webm import *