Recherche avancée

Médias (91)

Autres articles (73)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (6658)

  • arm : vp9itxfm : Template the quarter/half idct32 function

    26 février 2017, par Martin Storsjö
    arm : vp9itxfm : Template the quarter/half idct32 function
    

    This reduces the number of lines and reduces the duplication.

    Also simplify the eob check for the half case.

    If we are in the half case, we know we at least will need to do the
    first three slices, we only need to check eob for the fourth one,
    so we can hardcode the value to check against instead of loading
    from the min_eob array.

    Since at most one slice can be skipped in the first pass, we can
    unroll the loop for filling zeros completely, as it was done for
    the quarter case before.

    This allows skipping loading the min_eob pointer when using the
    quarter/half cases.

    This is cherrypicked from libav commit
    98ee855ae0cc118bd1d20921d6bdb14731832462.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavcodec/arm/vp9itxfm_neon.S
  • Revision 35505 : On vérifie bien que les paramètres sont en array sinon on passe un array ...

    23 février 2010, par kent1@… — Log

    On vérifie bien que les paramètres sont en array sinon on passe un array vide.

  • Simulate concatenated file using hard link ?

    16 décembre 2011, par Sugrue

    I have multiple parts of a single file which I want a 3rd party c++/c# plugin to read as a single file. Basically, when the plugin file reader gets to the end of one file-part, I want it to continue to the next one.

    (For anyone interested, the plugin is Aforge.Net FFMpeg, and I am trying to import VOB files)

    It looks like quite a task to reprogram the plugin. An alternative solution is to copy the file parts to a concatenated file, but this is slow because I am dealing with many GBs of data.

    Is it possible to use a file system hard link to point to multiple files ? Or is there some other way to 'fake' a concatenated file ? Using command line FFMpeg I can use 'type' to live stream a concatenate file in, but I can't figure out how to achieve this in c# with this plugin.

    I am on Windows 7.