Thomas Fillon

Results 8 issues of Thomas Fillon

As far as I understand, in [views/item.py -> item_export](https://github.com/Parisson/Telemeta/blob/3a316c82b3dc0db88b4504e7fa5ef3ae3b5b4ca4/telemeta/views/item.py#L350) source media could be used for streaming if there are already in the required mime type but metadata would also be...

bug
question

In [urls.py line 67](https://github.com/Parisson/Telemeta/blob/master/telemeta/urls.py#L67) `url(r'^archives/items/(?P[A-Za-z0-9._-]+)/dc/xml/$', item_view.item_detail, {'format': 'dublin_core_xml'}, name="telemeta-item-dublincore-xml"),` produce the following Type Error > TypeError at /archives/items/CNRSMH_I_2007_012_050_02/dc/xml/ > item_detail() got an unexpected keyword argument 'format' because the `item_detail`function in...

"import *" makes it really difficult to review and modify code and they are used quite intensively in Telemeta.

enhancement

[MediaItemTranscoded](https://github.com/Parisson/Telemeta/blob/master/telemeta/models/item.py#L429) does not seem to be used anymore (appart from appearing in admin view but apparently no new objects are created). Has it been replaced by [MediaItemTranscodingFlag](https://github.com/Parisson/Telemeta/blob/master/telemeta/models/item.py#L465) ? The last...

question

Gstreamer is overriding command line help message. This issue has already been circumvented in the `timeside-launch` script see https://github.com/Parisson/TimeSide/blob/6bc2813a9bfb0e241b87e43925591b17d02597ad/scripts/timeside-launch#L141 but it also appears with django management commands as indicated below....

security

#64 shows some issues with the time methode of FramewiseObject. This has to be checked by a unittest for all analyzers with FramewiseObject.

feature
tests

Currently Analyzer parameters specification and validation is based on [Enthought Traits](http://code.enthought.com/projects/traits/) the [Traitlets](https://traitlets.readthedocs.io/en/stable/) framework that seems to be derived from Traits may be simpler to use. Nevertheless with the new...

feature

It may be interesting to use [Django filer](https://github.com/divio/django-filer) for file management. It could be usefull for (media) item : audio or video (then see [here](https://django-filer.readthedocs.io/en/latest/extending_filer.html) on how to extend django...

feature
question