Changeset 2debf26
- Timestamp:
- 11/10/11 14:02:18 (20 months ago)
- Branches:
- master, crem, crem2, dev, dev2, diadems, forma, generic, instru_search, lam, nlivemulti, production, release/1.4.4, security, social, storage, test
- Children:
- d9eed0a
- Parents:
- 618d7ec4 (diff), fb59680 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - git-author:
- yomguy <yomguy@…> (11/10/11 14:02:18)
- git-committer:
- yomguy <yomguy@…> (11/10/11 14:02:18)
- Location:
- telemeta
- Files:
-
- 2 added
- 1 deleted
- 12 edited
-
admin.py (modified) (2 diffs)
-
models/media.py (modified) (3 diffs)
-
models/system.py (modified) (1 diff)
-
templates/telemeta_default/mediaitem_detail.html (modified) (1 diff)
-
templates/telemeta_default/mediaitem_detail_dc.html (modified) (1 diff)
-
urls.py (modified) (1 diff)
-
web/base.py (modified) (3 diffs)
-
pages/en/home.rst (modified) (1 diff)
-
pages/en/home_img.jpg (added)
-
pages/en/legal_notices.rst (modified) (1 diff)
-
pages/fr/.gitattributes (deleted)
-
pages/fr/home.rst (modified) (1 diff)
-
pages/fr/home_img.jpg (added)
-
pages/fr/legal_notices.rst (modified) (1 diff)
-
templates/telemeta_default/base.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
telemeta/admin.py
r7bb5f60 r482c7bd 14 14 exclude = ('copied_from_item', ) 15 15 16 class MediaItemRelated FileAdmin(admin.ModelAdmin):16 class MediaItemRelatedAdmin(admin.ModelAdmin): 17 17 search_fields = ['title', 'description'] 18 18 … … 52 52 admin.site.register(MediaItem, MediaItemAdmin) 53 53 admin.site.register(MediaPart, MediaPartAdmin) 54 admin.site.register(MediaItemRelated File, MediaItemRelatedFileAdmin)54 admin.site.register(MediaItemRelated, MediaItemRelatedAdmin) 55 55 56 56 admin.site.register(Instrument, InstrumentAdmin) -
telemeta/models/media.py
r618d7ec4 r2debf26 333 333 334 334 335 class MediaItemRelated File(MediaResource):336 "Item related attached file"335 class MediaItemRelated(MediaResource): 336 "Item related media" 337 337 338 338 element_type = 'media' … … 356 356 357 357 def save(self, force_insert=False, force_update=False): 358 super(MediaItemRelated File, self).save(force_insert, force_update)358 super(MediaItemRelated, self).save(force_insert, force_update) 359 359 360 360 def set_mime_type(self): … … 370 370 371 371 class Meta(MetaCore): 372 db_table = 'media_item_related _file'373 374 class MediaItemRelatedF ileForm(ModelForm):375 class Meta: 376 model = MediaItemRelated File372 db_table = 'media_item_related' 373 374 class MediaItemRelatedForm(ModelForm): 375 class Meta: 376 model = MediaItemRelated 377 377 378 378 class MediaItemKeyword(ModelCore): -
telemeta/models/system.py
r7d337e4 r482c7bd 46 46 class Revision(ModelCore): 47 47 "Revision made by user" 48 ELEMENT_TYPE_CHOICES = (('collection', 'collection'), ('item', 'item'), ('part', 'part'), ('marker', 'marker') )48 ELEMENT_TYPE_CHOICES = (('collection', 'collection'), ('item', 'item'), ('part', 'part'), ('marker', 'marker'), ('media', 'media')) 49 49 CHANGE_TYPE_CHOICES = (('import', 'import'), ('create', 'create'), ('update', 'update'), ('delete','delete')) 50 50 -
telemeta/templates/telemeta_default/mediaitem_detail.html
r510ed41 rfb59680 277 277 <div> 278 278 <h4><a href="#">{% trans "Related media" %}</a></h4> 279 {% if related_ files%}280 <div class="instruments">279 {% if related_media %} 280 <div> 281 281 <table class="instruments" width="100%"> 282 282 <thead> 283 283 <tr> 284 <td>{% field_label "MediaItemRelatedFile" "title" %}</td> 285 <td>{% field_label "MediaItemRelatedFile" "description" %}</td> 286 <td>{% field_label "MediaItemRelatedFile" "mime type" %}</td> 287 <td>{% field_label "MediaItemRelatedFile" "preview" %}</td> 284 <td>{% field_label "MediaItemRelated" "media" %}</td> 285 <td>{% field_label "MediaItemRelated" "preview" %}</td> 288 286 </tr> 289 287 </thead> 290 288 <tbody> 291 {% for file in related_files%}289 {% for media in related_media %} 292 290 <tr> 293 <td> 294 {% if file.url %} 295 <a href="{{ file.url }}" target="_blank"> 296 {% if file.title %} 297 {{ file.title }} 298 {% else %} 299 {{ file.url|get_filename }} 291 <td style="font-size: 1em;"> 292 <dl class="listing"> 293 <dt>{% trans "Title" %}</dt> 294 <dd> 295 {% if media.url %} 296 <a href="{{ media.url }}" target="_blank"> 297 {% if media.title %} 298 {{ media.title }}</a> 299 {% else %} 300 {{ media.url|get_filename }}</a> 301 {% endif %} 302 {% else %} 303 <a href="{% url telemeta-item-related item.public_id media.id %}" target="_blank"> 304 {% if media.title %} 305 {{ media.title }}</a> 306 {% else %} 307 {{ media.file|get_filename }}</a> 308 {% endif %} 309 {% endif %} 310 </dd> 311 <dt>{% trans "Description" %}</dt> 312 <dd>{{ media.description|html_line_break|safe }}</dd> 313 {% dl_field media "mime_type" %} 314 <dt>{% trans "URL" %}</dt> 315 <dd> 316 {% if media.url %} 317 <a href="{{ media.url }}" target="_blank">{{ media.url }}</a> 318 {% else %} 319 <a href="{% url telemeta-item-related item.public_id media.id %}" target="_blank"> 320 {% url telemeta-item-related item.public_id media.id %} 321 </a> 300 322 {% endif %} 301 </a> 302 {% endif %} 303 {% if file.file %} 304 <a href="{% url telemeta-item-related-file item.public_id file.id %}" target="_blank"> 305 {% if file.title %} 306 {{ file.title }} 307 {% else %} 308 {{ file.file|get_filename }} 309 {% endif %} 310 </a> 311 {% endif %} 323 </dd> 324 </dl> 312 325 </td> 313 <td>{{ file.description }}</td> 314 <td>{{ file.mime_type }}</td> 315 <td>{% if file.is_image %} 316 {% if file.url %} 317 <a href="{{ file.url }}"> 318 <img src="{{ file.url }}" style="width: 400px;" /></a> 326 327 <td>{% if media.is_image %} 328 {% if media.url %} 329 <a href="{{ media.url }}"> 330 <img src="{{ media.url }}" style="max-width: 420px; max-height: 200px;" /></a> 319 331 {% else %} 320 <a href="{% url telemeta-item-related -file item.public_id file.id %}">321 <img src="{% url telemeta-item-related -file item.public_id file.id %}" style="width: 400px;" /></a>332 <a href="{% url telemeta-item-related item.public_id media.id %}"> 333 <img src="{% url telemeta-item-related item.public_id media.id %}" style="max-width: 420px; max-height: 200px;" /></a> 322 334 {% endif %} 323 335 {% else %} 324 {% if file.url %} 325 {% if "youtube" in file.url %} 326 <iframe width="420" height="315" src="{{ file.url|get_youtube }}" frameborder="0" allowfullscreen></iframe> 327 {% else %} 328 <a href="{{ file.url }}">{% trans "link" %}</a> 336 {% if media.url %} 337 {% if "youtube" in media.url %} 338 <iframe width="251" height="200" src="{{ media.url|get_youtube }}" frameborder="0" allowfullscreen></iframe> 329 339 {% endif %} 330 340 {% endif %} 331 {% if file.file %}332 <a href="{% url telemeta-item-related-file item.public_id file.id %}">link</a>333 341 {% endif %} 334 {% endif %}</td>342 </td> 335 343 </tr> 336 344 {% endfor %} -
telemeta/templates/telemeta_default/mediaitem_detail_dc.html
r6e65a5b rfca9c76 17 17 {% endif %} 18 18 19 19 {% block related %} 20 {% endblock related %} -
telemeta/urls.py
r015a9b7 rfb59680 114 114 dict(template='telemeta/mediaitem_keywords_edit.html'), name="telemeta-item-keywords_edit"), 115 115 url(r'^items/(?P<public_id>[A-Za-z0-9._-]+)/delete/$', item_view.item_delete, name="telemeta-item-delete"), 116 url(r'^items/(?P<item_public_id>[A-Za-z0-9._-]+)/related/(?P< file_id>[A-Za-z0-9._-]+)$', item_view.related_file_stream, name="telemeta-item-related-file"),117 url(r'^items/(?P<public_id>[A-Za-z0-9._-]+)/related /$', item_view.related_file_edit, dict(template='telemeta/mediaitem_related_edit.html'), name="telemeta-item-related_edit"),116 url(r'^items/(?P<item_public_id>[A-Za-z0-9._-]+)/related/(?P<media_id>[A-Za-z0-9._-]+)$', item_view.related_media_stream, name="telemeta-item-related"), 117 url(r'^items/(?P<public_id>[A-Za-z0-9._-]+)/related_edit/$', item_view.related_media_edit, dict(template='telemeta/mediaitem_related_edit.html'), name="telemeta-item-related_edit"), 118 118 # Markers 119 119 url(r'^markers/(?P<marker_id>[A-Za-z0-9]+)/$', item_view.item_detail, name="telemeta-item-detail-marker"), -
telemeta/web/base.py
rd082877 rfb59680 511 511 str(item.recorded_to_date).split('-')[0]) 512 512 513 related_ files = MediaItemRelatedFile.objects.filter(item=item)514 for file in related_ files:513 related_media = MediaItemRelated.objects.filter(item=item) 514 for file in related_media: 515 515 if not file.mime_type: 516 516 file.set_mime_type() … … 534 534 'previous' : previous, 'next' : next, 'marker': marker_id, 'playlists' : playlists, 535 535 'public_access': public_access, 'width': width, 'height': height, 536 'related_ files': related_files,536 'related_media': related_media, 537 537 }) 538 538 … … 585 585 }) 586 586 587 def related_ file_stream(self, request, item_public_id, file_id):587 def related_media_stream(self, request, item_public_id, media_id): 588 588 item = MediaItem.objects.get(public_id=item_public_id) 589 file = MediaItemRelatedFile.objects.get(item=item, id=file_id)590 response = HttpResponse(stream_from_file( file.file.path), mimetype=file.mime_type)589 media = MediaItemRelated.objects.get(item=item, id=media_id) 590 response = HttpResponse(stream_from_file(media.file.path), mimetype=media.mime_type) 591 591 # response['Content-Disposition'] = 'attachment' 592 592 return response 593 593 594 594 @method_decorator(permission_required('telemeta.change_mediaitem')) 595 def related_ file_edit(self, request, public_id, template):595 def related_media_edit(self, request, public_id, template): 596 596 item = MediaItem.objects.get(public_id=public_id) 597 MediaItemRelatedF ileFormSet = inlineformset_factory(MediaItem, MediaItemRelatedFile, form=MediaItemRelatedFileForm)597 MediaItemRelatedFormSet = inlineformset_factory(MediaItem, MediaItemRelated, form=MediaItemRelatedForm) 598 598 if request.method == 'POST': 599 formset = MediaItemRelatedF ileFormSet(data=request.POST, files=request.FILES, instance=item)599 formset = MediaItemRelatedFormSet(data=request.POST, files=request.FILES, instance=item) 600 600 if formset.is_valid(): 601 601 formset.save() 602 item.set_revision(request.user) 602 603 return HttpResponseRedirect('/items/'+public_id) 603 604 else: 604 formset = MediaItemRelatedF ileFormSet(instance=item)605 formset = MediaItemRelatedFormSet(instance=item) 605 606 606 607 return render(request, template, {'item': item, 'formset': formset,}) -
telemeta/pages/en/home.rst
r2e72c5f red892df 1 ============================================== =====2 Telemeta : Web Audio Content Management System 3 ============================================== =====1 ============================================== 2 Sound archives of the CNRS - Musée de l'Homme 3 ============================================== 4 4 5 `Telemeta <http://telemeta.org>`_ 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 organize, backup and publish documented sound collections of audio files, CDs, digitalized vinyls and magnetic tapes over a strong database, in accordance with open web standards.5 The establishment of the `CREM <http://www.crem-cnrs.fr>`_’s audio archives is the result of a long history of scientific research on music. Since the birth of ethnomusicology (then "comparative musicology"), which coincided with the invention of the first recorders in the late nineteenth century, recording music materials and their classification and preservation are central in our knowledge of the musical Man. 6 6 7 Key features of Telemeta: 8 9 * Secure archiving, editing and publishing of audio files over internet. 10 * User friendly web frontend including workflows and high level search methods 11 * Smart dynamical and skinnable audio player (thanks to `TimeSide <http://code.google.com/p/timeside/>`_ and `SoundManager2 <http://www.schillmania.com/projects/soundmanager2/>`_) 12 * "On the fly" analyzing, transcoding and metadata embedding based on an easy plugin architecture 13 * Collaborative temporal indexing with fast user marker management 14 * Multi-format support : FLAC, OGG, MP3, WAV and more 15 * User management with individual profiles and rights 16 * User playlist management with CSV data export 17 * Geo-Navigator for audio geolocalization 18 * `DublinCore <http://dublincore.org/>`_ compatibility 19 * `OAI-PMH <http://www.openarchives.org/pmh/>`_ data provider 20 * Relational database system (MySQL type) 21 * RSS feeds generator 22 * XML serialized backup 7 .. image:: home_img.jpg 8 :align: left 23 9 24 The Telemeta data model is now based on *collection* and *item* elements. A *collection* is described by its metadata and is related to audio *items*. An *item* embeds audio files and its metadata. This model has been designed to fit the one of the French Centre of Ethnomusicology (`CREM <http://www.crem-cnrs.fr>`_) of the University of Paris Ouest - Nanterre but could be easily adapted or overrided to suit other data structures. 10 With the foundation of the Sound Archive at the Musée d’Ethnographie du Trocadéro by André Schaeffner in 1932 (which became the Sound Archive of the Musée de l’Homme in 1937) and the creation in 1967 of "Laboratoire d’Analyse sonore" on Gilbert Rouget initiative and the creation of a research team from the `CNRS <http://www.cnrs.fr/>`_ (Scientific Research National Center in France) in 1968, both at the `Musée de l’Homme <http://www.museedelhomme.fr/>`_, the conservation of this vast archives collection was more closely related to research : it is powered by the fieldworks of researchers on all continents; collections can serve for research, diachronic and synchronic comparisons, the preparation of new fieldworks and the training of Ph.D students. In 1985, the `CNRS <http://www.cnrs.fr/>`_ and the `Musée National d'Histoire Naturelle <http://www.mnhn.fr/>`_ (National Museum of Natural History) decided to join efforts to preserve this vast archives, therefore called "Sound Archives of CNRS - Musée de l'Homme". A small portion of these archives has been published in 78s (Vox Africa, etc ...), 33 rpm discs and CD (Chant du Monde, Harmonia Mundi). Currently, analogic media are being digitalized with the assistance of the Ministry of Culture and National Library of France. With the installation of the `Center for Research in Ethnomusicology <http://www.crem-cnrs.fr>`_ (CREM, Department of Ethnology and Comparative Sociology, CNRS UMR 7186) at the University of Paris Ouest-Nanterre in 2009, and the opening of the `Telemeta <http://telemeta.org>`_ platform in 2010, this collection sound archives from the era of the Internet. 11 12 The archives of CREM, the most important in Europe, are distinguished by their wealth: 13 14 * Nearly 3,500 hours of recordings of unpublished field. 15 * Approximately 3700 hours of material published (more than 5000 discs, many of which are very rare). 16 17 The collaborative platform `Telemeta <http://telemeta.org>`_ aims to make these archives available to researchers and to the extent possible, the public, in compliance with the intellectual and moral rights of musicians and collectors. Developed with the support of the program `TGE-Adonis <http://www.tge-adonis.fr/>`_ of the `CNRS <http://www.cnrs.fr/>`_, allows researchers to exchange data online with communities producing their music in their home countries, including through collaborative tools like markers , spaces, comments, etc... 18 19 This site is managed by the `CREM <http://www.crem-cnrs.fr>`_. All collaborations are welcome to enrich and enhance this precious musical heritage common to all humanity. Currently, a thousand hours is searchable by code or `access on site and CREM (Université Paris Ouest - Nanterre - La Défense, Building C, Ground Floor, Room 20) <http://goo.gl/maps/ZgHg>`_, and the Central Library Muséum National d'Histoire Naturelle, and the Bibliothèque François Mitterand (garden). 25 20 26 21 | 27 -
telemeta/pages/en/legal_notices.rst
r1c21ef7 r78fffd8 1 ================== 2 Legal notices3 ================== 1 ===================== 2 Legal Notices 3 ===================== 4 4 5 ** Telemeta is edited by Parisson SARL**5 **Site editor:** 6 6 7 | Parisson SARL 8 | 16 rue Jacques Louvel-Tessier 75010 Paris, France 9 | `http://parisson.com <http://parisson.com>`_ 10 | 11 | Copyright (C) 2006-2011 Parisson SARL 12 | 13 | This software is governed by the CeCILL v2 license under French law and 14 | abiding by the rules of distribution of free software. You can use, 15 | modify and/ or redistribute the software under the terms of the CeCILL v2 16 | license as circulated by CEA, CNRS and INRIA at the following URL 17 | `http://www.cecill.info <http://www.cecill.info>`_. 18 | 19 | As a counterpart to the access to the source code and rights to copy, 20 | modify and redistribute granted by the license, users are provided only 21 | with a limited warranty and the software's author, the holder of the 22 | economic rights, and the successive licensors have only limited 23 | liability. 24 | 25 | In this respect, the user's attention is drawn to the risks associated 26 | with loading, using, modifying and/or developing or reproducing the 27 | software by the user in light of its specific status of free software, 28 | that may mean that it is complicated to manipulate, and that also 29 | therefore means that it is reserved for developers and experienced 30 | professionals having in-depth computer knowledge. Users are therefore 31 | encouraged to load and test the software's suitability as regards their 32 | requirements in conditions enabling the security of their systems and/or 33 | data to be ensured and, more generally, to use and operate it in the 34 | same conditions as regards security. 35 | 36 | The fact that you are presently reading this means that you have had 37 | knowledge of the CeCILL v2 license and that you accept its terms. 7 | Centre de Recherche en Ethnomusicologie (CREM - LESC UMR 7186 CNRS) 8 | MAE - 21, allée de l'Université 9 | 92023 Nanterre cedex 10 | France 38 11 12 **Managing editor:** 13 14 | Jean Lambert (director du CREM) 15 | e-mail : lambert (at) mnhn.fr 16 17 **Design and project manager:** 18 19 | Joséphine Simonnot (CREM) 20 | e-mail : josephine.simonnot (at) mae.u-paris10.fr 21 22 **Head of archives at CREM :** 23 24 | Aude Da Cruz-Lima (CREM) 25 | e-mail : aude.da-cruz-lima (at) mae.u-paris10.fr 26 27 **Design and head of development:** 28 29 | Guillaume Pellerin (`Parisson <http://parisson.com>`_) 30 | e-mail : guillaume.pellerin@parisson.com 31 32 **Telemeta CREM uses GeoEthno:** 33 34 | © CNRS 35 | Responsable de GeoEthno: Isabelle Donze 36 | Laboratoire d'ethnologie et de sociologie comparative 37 | Bibliothèque Eric-de-Dampierre (Responsable : Marie-Dominique Mouton) 38 | Maison de l'Archéologie et de l'Ethnologie 39 | Université de Paris Ouest La Défense - 92023 Nanterre cedex - France 40 | Contact : bibethno@mae.u-paris10.fr 41 42 | **AUDIO FILE COPYING FORBIDDEN IF NOT EXPLICITLY ALLOWED** 43 | **COMMERCIAL USING OF THE ARCHIVES FORBIDDEN IF NOT EXPLICITLY ALLOWED** 44 45 46 -
telemeta/pages/fr/home.rst
r2e72c5f ra329787 1 ============================================ =======2 Telemeta : a web Audio Content Management System 3 ============================================ =======1 ============================================ 2 Archives sonores du CNRS - Musée de l'Homme 3 ============================================ 4 4 5 `Telemeta <http://telemeta.org>`_ est une solution libre d'archivage et d'indexation audio basée sur une interface de type web. Elle offre des fonctions avancées d'édition, d'indexation, de transcodage, de publication et de sauvegarde d'archives audio et de leurs méta-données. Il donne accès aux ressources distantes publiées ou privatisés issues de collections numérisées (fichiers, CD audio, vinyl ou bandes magnétiques) par l'intermédiaire d'un simple navigateur ou d'une application dédiée en accord avec les standards du web.5 La constitution des archives sonores du `CREM <http://www.crem-cnrs.fr>`_ est l’aboutissement d’une longue histoire de la recherche scientifique sur la musique. Depuis la naissance de l’ethnomusicologie (alors « musicologie comparée »), qui coïncida avec l'invention des premiers appareils enregistreurs à la fin du XIXe siècle, l'enregistrement des documents musicaux, ainsi que leur classification et leur conservation occupent une place centrale dans notre connaissance de l’Homme musical. 6 6 7 Liste des fonctionnalités principales: 7 .. image:: home_img.jpg 8 :align: left 8 9 9 * Edition, archivage pérenne sécurisé, indexation collaborative sur la base d'une application web 10 * Interface utilisateur conforme aux standards ouverts du web 11 * Moteur de recherche par mots clés ou par critères (géographiques, ethniques, etc...) 12 * Lecteur audio avancé dynamique et paramétrable (tous formats audio et video supportés) 13 * Moteur d'analyse et de visualisation audio basée sur une structure de modules paramétrables 14 * Transcodage vers les formats FLAC, OGG, MP3 et WAV avec encapsulation des métadonnées à la volée 15 * Gestion complète des droits et profils utilisateurs 16 * Gestion de listes de lecture personnelles avec export CSV 17 * Indexation temporelle à la volée (marqueurs textuels sur le lecteur web audio) 18 * Base de données relationnelle (type MySQL) 19 * Service d'accès aux données par le protocole OAI-PMH (moissonnage) 20 * Compatibilité `DublinCore <http://dublincore.org/>`_ 21 * Service de moissonnage `OAI-PMH <http://www.openarchives.org/pmh/>`_ 22 * Geo-navigateur pour la géolocalisation audio (Google Maps) 23 * Flux RSS dynamique des dernières modifications 24 * Sauvegarde sérialisée des archives et de leurs métadonnées aux formats WAV + XML 25 * Traduction complète anglais / français (détection automatique et/ou contrainte manuelle) 26 27 Telemeta incorpore ainsi un ensemble de fonctions spécifiques au travail des archives temporelles comme la musique ou la voix parlée / chantée, l'interface ayant été pensée par et pour les chercheurs. Les services de transposition des méta-données au format DublinCore à travers le protocole OAI-PMH permet de proposer l'ensemble des méta-données aux services de moissonnage institutionels tels que `Isidore <http://www.rechercheisidore.fr>`_ créé par le `TGE Adonis <http://www.tge-adonis.fr>`_ pour les sciences humaines et sociales. 10 Avec l'ouverture de la Phonothèque au Musée d'Ethnographie du Trocadéro par André Schaeffner en 1932 (qui devint la Phonothèque du Musée de l’Homme en 1937) puis la création en 1967 du "Laboratoire d'analyse du son" à l'initiative de Gilbert Rouget, ainsi que la création d'une équipe de recherche du `CNRS <http://www.cnrs.fr/>`_ en 1968, tous deux au `Musée de l’Homme <http://www.museedelhomme.fr/>`_, la conservation de ce vaste fonds d'archives sonores fut plus étroitement liée à la recherche : celui-ci est alimenté par les missions de terrain des chercheurs sur tous les continents ; les collections permettent à la fois des recherches de laboratoire, des comparaisons diachroniques et synchroniques, la préparation de nouveaux terrains et la formation des doctorants. En 1985, le `CNRS <http://www.cnrs.fr/>`_ et le `Musée National d'Histoire Naturelle <http://www.mnhn.fr/>`_ décidèrent de joindre leurs efforts pour conserver ce vaste fonds d'archives, baptisé dès lors "Archives sonores CNRS - Musée de l'Homme". Une petite partie de ces archives a été publiée en disques 78 tours (Africa Vox, etc…), disques 33 tours et en CD (Chant du Monde, Harmonia Mundi). Actuellement, les supports analogiques sont en cours de numérisation grâce à l'aide du Ministère de la Culture et de la Bibliothèque Nationale de France, Avec l’installation du `Centre de Recherche en Ethnomusicologie <http://www.crem-cnrs.fr>`_ (CREM, `Laboratoire d'Ethnologie et de Sociologie Comparative <http://www.u-paris10.fr/LESC/0/fiche___laboratoire/&RH=rec_lab>`_, UMR 7186) à l’Université de Paris Ouest - Nanterre La Défense en 2009, et l’ouverture de la plate-forme `Telemeta <http://telemeta.org>`_ en 2011, ce fonds d’archives sonores entre dans l’ère de l'internet. 11 12 Les archives du CREM, parmi les plus importantes d’Europe, se distinguent par leur richesse : 13 14 * près de 3500 heures d'enregistrements de terrain non publiés. 15 * environ 3700 heures de documents publiés (plus de 5000 disques dont beaucoup sont très rares). 16 17 La plateforme collaborative `Telemeta <http://telemeta.org>`_ vise à rendre ces archives accessibles aux chercheurs et, dans la mesure du possible, au public, dans le respect des droits intellectuels et moraux des musiciens et des collecteurs. Mise au point grâce au soutien du programme `TGE-Adonis <http://www.tge-adonis.fr/>`_ du `CNRS <http://www.cnrs.fr/>`_, elle permet aux chercheurs d'échanger les données en ligne, avec les communautés productrices de ces musiques dans leur pays d'origine, notamment au moyen d’outils collaboratifs comme des marqueurs temporels, des espaces de commentaires, etc... 18 19 La gestion de la plateforme est assurée par le `CREM <http://www.crem-cnrs.fr>`_. Le site accueille toutes les collaborations visant à enrichir et valoriser ce précieux patrimoine musical commun à toute l'Humanité. Actuellement, un millier d’heures est consultable en ligne avec un code d’accès, mais aussi `sur place au CREM (Université Paris-Ouest Nanterre-La Défense, bâtiment C, rez-de-chaussée, pièce 20) <http://goo.gl/maps/ZgHg>`_, ainsi qu’à la Bibliothèque centrale du Muséum National d’Histoire Naturelle, et à la Bibliothèque François Mitterand (rez de jardin). 28 20 29 21 | -
telemeta/pages/fr/legal_notices.rst
r1c21ef7 r78fffd8 1 ================== 2 Mentions légales3 ================== 1 ===================== 2 Mentions Légales 3 ===================== 4 4 5 ** Telemeta est édité par la Société Parisson SARL**5 **Editeur du site :** 6 6 7 | Parisson SARL 8 | 16 rue Jacques Louvel-Tessier 75010 Paris, France 9 | `http://parisson.com <http://parisson.com>`_ 10 | 11 | Copyright (C) 2006-2011 Parisson SARL 12 | 13 | Ce logiciel est régi par la licence CeCILL v2 soumise au droit français et 14 | respectant les principes de diffusion des logiciels libres. Vous pouvez 15 | utiliser, modifier et/ou redistribuer ce programme sous les conditions 16 | de la licence CeCILL v2 telle que diffusée par le CEA, le CNRS et l'INRIA 17 | sur le site `http://www.cecill.info <http://www.cecill.info>`_. 18 | 19 | En contrepartie de l'accessibilité au code source et des droits de copie, 20 | de modification et de redistribution accordés par cette licence, il n'est 21 | offert aux utilisateurs qu'une garantie limitée. Pour les mêmes raisons, 22 | seule une responsabilité restreinte pèse sur l'auteur du programme, le 23 | titulaire des droits patrimoniaux et les concédants successifs. 24 | 25 | A cet égard l'attention de l'utilisateur est attirée sur les risques 26 | associés au chargement, à l'utilisation, à la modification et/ou au 27 | développement et à la reproduction du logiciel par l'utilisateur étant 28 | donné sa spécificité de logiciel libre, qui peut le rendre complexe à 29 | manipuler et qui le réserve donc à des développeurs et des professionnels 30 | avertis possédant des connaissances informatiques approfondies. Les 31 | utilisateurs sont donc invités à charger et tester l'adéquation du 32 | logiciel à leurs besoins dans des conditions permettant d'assurer la 33 | sécurité de leurs systèmes et ou de leurs données et, plus généralement, 34 | à l'utiliser et l'exploiter dans les mêmes conditions de sécurité. 35 | 36 | Le fait que vous puissiez accéder à cet en-tête signifie que vous avez 37 | pris connaissance de la licence CeCILL v2, et que vous en avez accepté les 38 | termes. 7 | Centre de Recherche en Ethnomusicologie (CREM - LESC UMR 7186 CNRS) 8 | MAE - 21, allée de l'Université 9 | 92023 Nanterre cedex 10 | France 11 12 **Directeur de publication :** 13 14 | Jean Lambert (directeur du CREM) 15 | e-mail : lambert (at) mnhn.fr 16 17 **Chef de projet et conception :** 18 19 | Joséphine Simonnot (CREM) 20 | e-mail : josephine.simonnot (at) mae.u-paris10.fr 21 22 **Responsable des archives du CREM :** 23 24 | Aude Da Cruz-Lima (CREM) 25 | e-mail : aude.da-cruz-lima (at) mae.u-paris10.fr 26 27 **Chef du développement et conception:** 28 29 | Guillaume Pellerin (`Parisson <http://parisson.com>`_) 30 | e-mail : guillaume.pellerin@parisson.com 31 32 **Telemeta CREM utilise GeoEthno:** 33 34 | © CNRS 35 | Responsable de GeoEthno: Isabelle Donze 36 | Laboratoire d'ethnologie et de sociologie comparative 37 | Bibliothèque Eric-de-Dampierre (Responsable : Marie-Dominique Mouton) 38 | Maison de l'Archéologie et de l'Ethnologie 39 | Université de Paris Ouest La Défense - 92023 Nanterre cedex - France 40 | Contact : bibethno@mae.u-paris10.fr 41 42 | **COPIE DES ARCHIVES SONORES INTERDITE SI PAS EXPLICITEMENT AUTORISÉ** 43 | **UTILISATION COMMERCIALE DES ARCHIVES SONORES INTERDITE SI PAS EXPLICITEMENT AUTORISÉ** 44 45 46 -
telemeta/templates/telemeta_default/base.html
rd082877 r618d7ec4 44 44 <div id="logo"> 45 45 {% block logo %} 46 <a href="{% url telemeta-home %}"><img src="{% url telemeta-images "logo_ telemeta_2.png" %}" alt="Telemeta" /></a>46 <a href="{% url telemeta-home %}"><img src="{% url telemeta-images "logo_crem.png" %}" alt="Sound archives of the CREM-CNRS" /></a> 47 47 {% endblock %} 48 48 </div>
Note: See TracChangeset
for help on using the changeset viewer.
