Changeset 359
- Timestamp:
- 03/17/09 01:50:04 (17 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
debian/changelog (modified) (1 diff)
-
debian/control (modified) (1 diff)
-
setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/debian/changelog
r288 r359 1 telemeta (0.4-1) unstable; urgency=low 2 3 * New upstream release 4 * See http://telemeta.org/log/ for the entire changelog 5 6 -- Guillaume Pellerin <yomguy@altern.org> Tue, 17 Mar 2009 01:46:51 +0100 7 1 8 telemeta (0.3.3-1) unstable; urgency=low 2 9 -
trunk/debian/control
r309 r359 11 11 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) 12 12 Recommends: lame, vamp-examples 13 Homepage: http://telemeta.org 13 14 Suggests: ecasound, festival, par2 14 Description: web frontend to backup, transcode and publish any audio content with metadata 15 Telemeta is a global audio archiving program which introduces useful and 16 secure indexing methods to backup digitalized audio files and metadata 17 dictionnaries. It is dedicated to backup any digitized and documented sound 18 from collections of vinyls, magnetic tapes or audio CD over a strong database 19 in accordance with many standards. Export functions also encapsulate edited 20 metadata into compressed file. The object style architecture will soon provide 21 user-friendly interfaces and plugin' style audio processing. 22 Here are the main features of Telemeta: 23 * Secure media editing and archiving over networks 24 * Easy transcoding 25 * Full tagging and marking methods 26 * XML metadata backup 27 * Web interface introducing WorkFlow 28 * SQL backend 29 * Data anti-corruption security with par2 recovery keys 30 * Data synchronizing over remote servers (rsync) 31 * Auto AudioMarking from metadata (thanks to Festival and Ecasound) 32 The Telemeta concept is based on collections. A collection includes original 33 sounds - or albums containing sounds - which will be backuped in a secure way 34 with a view of transcoded 'public' formats (WAV, FLAC, MP3, OGG and many more 35 soon...) including metadata editing and publishing tools. 36 See http://svn.parisson.org/telemeta/ for more informations. 15 Description: web frontend to backup, analyse, transcode and stream any audio content with its metadata 16 Telemeta is a web audio archiving program which introduces useful and secure methods to 17 backup, index, transcode, analyse and publish any digitalized audio file with its metadata. 18 It is dedicated to professionnals who wants to easily backup and publish documented sounds 19 from collections of vinyls, magnetic tapes or audio CDs over a strong database, in accordance 20 with open standards. 21 22 Here are the main features of Telemeta: 23 * Secure archiving, editing and publishing of audio files over internet. 24 * "On the fly" transcoding and metadata encapsulating (FLAC, OGG, MP3, WAV, etc..) 25 * User friendly web frontend including workflows and high level search methods 26 * Smart dynamical and skinnable audio player (thanks to Timeside and soundmanager2) 27 * "On the fly" complex audio analyzers based on an easy plugin architecture 28 * Strong SQL backend 29 * XML metadata backup 30 * Auto audio-marking with synthetized voices reading metadata (optional) 31 * Anti-corruption data security management with par2 recovery keys 32 * Data synchronizing over remote servers (rsync + ssh methods) 33 34 The Telemeta data model is based on 'collections' and 'items'. A collection is described 35 by its metadata and includes original audio items (sounds) and its own metadata. This 36 existing model has been designed to fit the one of the French Centre of Etnomusicology (CREM) 37 but could be easily adapted/overrided to sue other data stuctures. 38 -
trunk/setup.py
r252 r359 1 # -*- coding: utf-8 -*- 1 2 from distutils.core import setup 2 3 from distutils.command.install import INSTALL_SCHEMES … … 54 55 data_files = data_files, 55 56 long_description = """ 56 Telemeta is a global audio archiving program which introduces useful and secure 57 indexing methods to backup digitalized audio files and metadata dictionnaries. 58 It is dedicated to backup any digitized and documented sound from collections of 59 vinyls, magnetic tapes or audio CD over a strong database in accordance with 60 many standards. Export functions also encapsulate edited metadata into 61 compressed file. The object style architecture will soon provide user-friendly 62 interfaces and plugin' style audio processing. 57 Telemeta is a web audio archiving program which introduces useful and secure methods to 58 backup, index, transcode, analyse and publish any digitalized audio file with its metadata. 59 It is dedicated to professionnals who wants to easily backup and publish documented sounds 60 from collections of vinyls, magnetic tapes or audio CDs over a strong database, in accordance 61 with open standards. 63 62 64 Here are the main features of Telemeta: 63 Here are the main features of Telemeta: 65 64 66 * Secure media editing and archiving over networks 67 * Easy transcoding 68 * Full tagging and marking methods 65 * Secure archiving, editing and publishing of audio files over internet. 66 * "On the fly" transcoding and metadata encapsulating (FLAC, OGG, MP3, WAV, etc..) 67 * User friendly web frontend including workflows and high level search methods 68 * Smart dynamical and skinnable audio player (thanks to Timeside and soundmanager2) 69 * "On the fly" complex audio analyzers based on an easy plugin architecture 70 * Strong SQL backend 69 71 * XML metadata backup 70 * Web interface introducing WorkFlow 71 * SQL backend 72 * Data anti-corruption security with par2 recovery keys 73 * Data synchronizing over remote servers (rsync) 74 * Auto AudioMarking from metadata (thanks to Festival and Ecasound) 72 * Auto audio-marking with synthetized voices reading metadata (optional) 73 * Anti-corruption data security management with par2 recovery keys 74 * Data synchronizing over remote servers (rsync + ssh methods) 75 75 76 The Telemeta concept is based on collections. A collection includes original77 sounds - or albums containing sounds - which will be backuped in a secure way 78 with a view of transcoded 'public' formats (WAV, FLAC, MP3, OGG and many more 79 soon...) including metadata editing and publishing tools.76 The Telemeta data model is based on 'collections' and 'items'. A collection is described 77 by its metadata and includes original audio items (sounds) and its own metadata. This 78 existing model has been designed to fit the one of the French Centre of Etnomusicology (CREM) 79 but could be easily adapted/overrided to sue other data stuctures. 80 80 81 See http:// svn.parisson.org/telemeta/for more informations.81 See http://telemeta.org for more informations. 82 82 """ 83 83 ) 84 85 # Install audiolab86 #os.chdir('telemeta/util/audiolab/')87 #os.system('python setup.py install')88
