
Recherche avancée
Autres articles (63)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)
Sur d’autres sites (7944)
-
avcodec/dvdsub_parser : Fix length check for short packets
30 septembre 2022, par Aidan MacDonaldavcodec/dvdsub_parser : Fix length check for short packets
The DVD subtitle parser handles two types of packets : "normal"
packets with a 16-bit length, and HD-DVD packets that set the
16-bit length to 0 and encode a 32-bit length in the next four
bytes. This implies that HD-DVD packets are at least six bytes
long, but the code didn't actually verify this.The faulty length check results in an out of bounds read for
zero-length "normal" packets that occur in the input, which are
only 2 bytes long, but get misinterpreted as an HD-DVD packet.
When this happens the parser reads packet_len from beyond the
end of the input buffer. The subtitle stream is not correctly
decoded after this point due to the garbage packet_len.Fixing this is pretty simple : fix the length check so packets
less than 6 bytes long will not be mistakenly parsed as HD-DVD
packets.Signed-off-by : Aidan MacDonald <aidanmacdonald.0x0@gmail.com>
Signed-off-by : Anton Khirnov <anton@khirnov.net> -
avcodec/rv34 : Don't needlessly copy VLC length and symbol arrays
22 octobre 2020, par Andreas Rheinhardtavcodec/rv34 : Don't needlessly copy VLC length and symbol arrays
Most of the VLCs used by RealVideo 3 and 4 obey three simple rules :
Shorter codes are on the left of the tree, for each length, the symbols
are ascending from left to right and the symbols either form a
permutation of 1..size or 0..(size - 1). For the latter case, one just
needs to store the length of each symbol and create the codes according
to the other rules ; no explicit code or symbol array must be stored.
The former case is also treated in much the same way by artificially
assigning a length of zero to the symbol 0 ; when a length of zero was
encountered, the element was ignored except that the symbol counter was
still incremented. If the length was nonzero, the symbol would be
assigned via the symbol counter and the length copied over into a new
array.Yet this is unnecessary, as ff_init_vlc_sparse() follows exactly the
same pattern : If a length of zero is encountered, the element is ignored
and only the symbol counter incremented. So one can directly forward the
length array and also need not create a symbol table oneself, because
ff_init_vlc_sparse() will infer the same symbol table in this case.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
Anomalie #3233 : Le bug #2848 (traduction de rubrique) est réapparu
19 juillet 2014, par marcimat ☺☮☯♫Merci pour les accès.
Pour le point 1) donc, voici ma conclusion ponctuelle :
- le sélecteur de rubrique est celui qui permet une recherche et sélection en mode « finder » (sélecteur générique), et non une simple liste déroulante donc.
- ce sélecteur dispose d’un input hidden name=’id_parent’ value=XX. XX étant la rubrique parente en cours au moment de l’ouverture du formulaire donc.
- en local, lorsqu’on sélectionne une autre rubrique parente, et qu’on clique ’changer’, l’input hidden est actualisé.
- sur taizé, l’input hidden ne s’actualise pas.MM.