Recherche avancée

Médias (91)

Autres articles (112)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En 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 à (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (11876)

  • Revision 4f660cc018 : Modified mode skip functionality. A previous speed feature skipped modes not us

    5 septembre 2013, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h


     Modify /vp9/encoder/vp9_rdopt.c



    Modified mode skip functionality.

    A previous speed feature skipped modes not used in earlier
    partitions but this not longer worked as intended following
    changes to the partition coding order and in conjunction
    with some other speed features (Especially speed 2 and above).

    This modified mode skip feature sets a mask after the first X
    modes have been tested in each partition depending on the
    reference frame of the current best case.

    This patch also makes some changes to the order modes are
    tested to fit better with this skip functionality.

    Initial testing suggests speed and rd hit count improvements
    of up to 20% at speed 1. Quality results. (derf -1.9%, std hd +0.23%).

    Change-Id : Idd8efa656cbc0c28f06d09690984c1f18b1115e1

  • x86inc : remove misaligned cpu flag

    11 septembre 2013, par Henrik Gramner
    x86inc : remove misaligned cpu flag
    

    Prevents a crash if the misaligned exception mask bit is
    cleared for some reason.

    Misaligned SSE functions are only used on AMD Phenom CPUs
    and the benefit is miniscule. They also require modifying
    the MXCSR control register and by removing those functions
    we can get rid of that complexity altogether.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DBH] libavutil/x86/x86inc.asm
  • How to set "ch_layout" in ffmpeg 6.1 ?

    9 juillet 2024, par Steven porite

    In 6.1 Ffmpeg, it use "ch_layout" to replace the "channel_layout" and "number". The "ch_layout" is "AVChannelLayout *" type. This type is defined in channel_layout.h, some kind of "ch_layout" is defined in this file too.&#xA;If I want to use the "av_dict_set_int()" set the "ch_layout" to "AV_CHANNEL_LAYOUT_STEREO", what should I fill to the "value" ?

    &#xA;

    /**&#xA; * Macro to define native channel layouts&#xA; *&#xA; * @note This doesn&#x27;t use designated initializers for compatibility with C&#x2B;&#x2B; 17 and older.&#xA; */&#xA;#define AV_CHANNEL_LAYOUT_MASK(nb, m) \&#xA;    { /* .order */ AV_CHANNEL_ORDER_NATIVE, \&#xA;      /* .nb_channels */  (nb), \&#xA;      /* .u.mask */ { m }, \&#xA;      /* .opaque */ NULL }&#xA;&#xA;/**&#xA; * @name Common pre-defined channel layouts&#xA; * @{&#xA; */&#xA;#define AV_CHANNEL_LAYOUT_MONO              AV_CHANNEL_LAYOUT_MASK(1,  AV_CH_LAYOUT_MONO)&#xA;#define AV_CHANNEL_LAYOUT_STEREO            AV_CHANNEL_LAYOUT_MASK(2,  AV_CH_LAYOUT_STEREO)&#xA;#define AV_CHANNEL_LAYOUT_2POINT1           AV_CHANNEL_LAYOUT_MASK(3,  AV_CH_LAYOUT_2POINT1)&#xA;#define AV_CHANNEL_LAYOUT_2_1               AV_CHANNEL_LAYOUT_MASK(3,  AV_CH_LAYOUT_2_1)&#xA;

    &#xA;

    /**&#xA; * Convenience wrapper for av_dict_set() that converts the value to a string&#xA; * and stores it.&#xA; *&#xA; * Note: If ::AV_DICT_DONT_STRDUP_KEY is set, key will be freed on error.&#xA; */&#xA;int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags);&#xA;

    &#xA;