
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (61)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (9702)
-
fftools/ffprobe : Loop over correct number of streams when flushing decoders
3 novembre 2022, par Derek Buitenhuisfftools/ffprobe : Loop over correct number of streams when flushing decoders
Some formats like FLV can dynamically add streams during packet reading.
FFprobe does check for this and reallocates the global stream info, but does
not reallocate InputFrame's streams and decoders when this happens, which,
as a result, could have caused flushing to occur on an out of bounds stream
index, since the flush loop iterates over fmt_ctx's nb_streams, and not
ifile's, despite using ifile's streams.This fixes an out of bounds read and segfult.
Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
avformat/mxfdec : do not use AnyType when resolving Descriptors and MultipleDescriptors
16 février 2024, par Marton Balintavformat/mxfdec : do not use AnyType when resolving Descriptors and MultipleDescriptors
By using AnyType for resolving a strong reference we searched among all types,
not just the ones which can be the target of the reference, which in some cases
caused to find the wrong type, if the metadata set UUIDs were not unique.UUIDs do not have to be unique if their type sets them apart, SMPTE 377M says :
> StrongRef : 'One to One’ relationship between sets and implemented in MXF
> with UUIDs. Strong References are typed which means that the definition
> identifies the kind of set which is the target of the reference.Fixes ticket #10865.
Signed-off-by : Marton Balint <cus@passwd.hu>
-
avformat/img2dec : Fail probing when no data is yet available and the filename contain...
11 septembre 2014, par Michael Niedermayeravformat/img2dec : Fail probing when no data is yet available and the filename contains no number/glob patterns either.
Fixes Ticket3901
the seek test error codes change due to a change in the failure path,
this could be avoided by changing the respective error codes to EINVALSigned-off-by : Michael Niedermayer <michaelni@gmx.at>