From: yomguy <> Date: Tue, 17 Mar 2009 00:50:04 +0000 (+0000) Subject: tag and fix debian package X-Git-Tag: 1.1~721 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=13b11a8aceb588e14cea30b9632c558950a9b7c7;p=telemeta.git tag and fix debian package --- diff --git a/debian/changelog b/debian/changelog index 1c95ee0e..5666e375 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +telemeta (0.4-1) unstable; urgency=low + + * New upstream release + * See http://telemeta.org/log/ for the entire changelog + + -- Guillaume Pellerin Tue, 17 Mar 2009 01:46:51 +0100 + telemeta (0.3.3-1) unstable; urgency=low * Add django 1.0 compatibility (no backward compatibility in most cases) diff --git a/debian/control b/debian/control index 000831e8..6a6164b6 100644 --- a/debian/control +++ b/debian/control @@ -10,27 +10,29 @@ Package: telemeta Architecture: any Depends: ${python:Depends}, python-xml, python-mutagen, python-django (>= 1.0-1), python-imaging (>= 1.1.6), sox (>= 14.2.0-1), vorbis-tools, flac, normalize-audio, python-mysqldb, mysql-server, octave2.9, python-tk, libgd2-xpm, libsndfile1 (>= 1.0.17), python-numpy, python-ctypes (>= 1.0.1), python-scikits-audiolab (>= 0.7) Recommends: lame, vamp-examples +Homepage: http://telemeta.org Suggests: ecasound, festival, par2 -Description: web frontend to backup, transcode and publish any audio content with metadata - Telemeta is a global audio archiving program which introduces useful and - secure indexing methods to backup digitalized audio files and metadata - dictionnaries. It is dedicated to backup any digitized and documented sound - from collections of vinyls, magnetic tapes or audio CD over a strong database - in accordance with many standards. Export functions also encapsulate edited - metadata into compressed file. The object style architecture will soon provide - user-friendly interfaces and plugin' style audio processing. - Here are the main features of Telemeta: - * Secure media editing and archiving over networks - * Easy transcoding - * Full tagging and marking methods - * XML metadata backup - * Web interface introducing WorkFlow - * SQL backend - * Data anti-corruption security with par2 recovery keys - * Data synchronizing over remote servers (rsync) - * Auto AudioMarking from metadata (thanks to Festival and Ecasound) - The Telemeta concept is based on collections. A collection includes original - sounds - or albums containing sounds - which will be backuped in a secure way - with a view of transcoded 'public' formats (WAV, FLAC, MP3, OGG and many more - soon...) including metadata editing and publishing tools. - See http://svn.parisson.org/telemeta/ for more informations. +Description: web frontend to backup, analyse, transcode and stream any audio content with its metadata +Telemeta is a web audio archiving program which introduces useful and secure methods to +backup, index, transcode, analyse and publish any digitalized audio file with its metadata. +It is dedicated to professionnals who wants to easily backup and publish documented sounds +from collections of vinyls, magnetic tapes or audio CDs over a strong database, in accordance +with open standards. + +Here are the main features of Telemeta: + * Secure archiving, editing and publishing of audio files over internet. + * "On the fly" transcoding and metadata encapsulating (FLAC, OGG, MP3, WAV, etc..) + * User friendly web frontend including workflows and high level search methods + * Smart dynamical and skinnable audio player (thanks to Timeside and soundmanager2) + * "On the fly" complex audio analyzers based on an easy plugin architecture + * Strong SQL backend + * XML metadata backup + * Auto audio-marking with synthetized voices reading metadata (optional) + * Anti-corruption data security management with par2 recovery keys + * Data synchronizing over remote servers (rsync + ssh methods) + +The Telemeta data model is based on 'collections' and 'items'. A collection is described +by its metadata and includes original audio items (sounds) and its own metadata. This +existing model has been designed to fit the one of the French Centre of Etnomusicology (CREM) +but could be easily adapted/overrided to sue other data stuctures. + diff --git a/setup.py b/setup.py index 6038580a..870b02bd 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- from distutils.core import setup from distutils.command.install import INSTALL_SCHEMES import os @@ -53,36 +54,30 @@ setup( packages = packages, data_files = data_files, long_description = """ -Telemeta is a global audio archiving program which introduces useful and secure -indexing methods to backup digitalized audio files and metadata dictionnaries. -It is dedicated to backup any digitized and documented sound from collections of -vinyls, magnetic tapes or audio CD over a strong database in accordance with -many standards. Export functions also encapsulate edited metadata into -compressed file. The object style architecture will soon provide user-friendly -interfaces and plugin' style audio processing. +Telemeta is a web audio archiving program which introduces useful and secure methods to +backup, index, transcode, analyse and publish any digitalized audio file with its metadata. +It is dedicated to professionnals who wants to easily backup and publish documented sounds +from collections of vinyls, magnetic tapes or audio CDs over a strong database, in accordance +with open standards. -Here are the main features of Telemeta: +Here are the main features of Telemeta: - * Secure media editing and archiving over networks - * Easy transcoding - * Full tagging and marking methods + * Secure archiving, editing and publishing of audio files over internet. + * "On the fly" transcoding and metadata encapsulating (FLAC, OGG, MP3, WAV, etc..) + * User friendly web frontend including workflows and high level search methods + * Smart dynamical and skinnable audio player (thanks to Timeside and soundmanager2) + * "On the fly" complex audio analyzers based on an easy plugin architecture + * Strong SQL backend * XML metadata backup - * Web interface introducing WorkFlow - * SQL backend - * Data anti-corruption security with par2 recovery keys - * Data synchronizing over remote servers (rsync) - * Auto AudioMarking from metadata (thanks to Festival and Ecasound) + * Auto audio-marking with synthetized voices reading metadata (optional) + * Anti-corruption data security management with par2 recovery keys + * Data synchronizing over remote servers (rsync + ssh methods) -The Telemeta concept is based on collections. A collection includes original -sounds - or albums containing sounds - which will be backuped in a secure way -with a view of transcoded 'public' formats (WAV, FLAC, MP3, OGG and many more -soon...) including metadata editing and publishing tools. +The Telemeta data model is based on 'collections' and 'items'. A collection is described +by its metadata and includes original audio items (sounds) and its own metadata. This +existing model has been designed to fit the one of the French Centre of Etnomusicology (CREM) +but could be easily adapted/overrided to sue other data stuctures. -See http://svn.parisson.org/telemeta/ for more informations. +See http://telemeta.org for more informations. """ ) - -# Install audiolab -#os.chdir('telemeta/util/audiolab/') -#os.system('python setup.py install') -