Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (83)

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • 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 (7332)

  • avfilter/asrc_sine : Fix invalid left shift of negative number

    22 janvier 2020, par Andreas Rheinhardt
    avfilter/asrc_sine : Fix invalid left shift of negative number
    

    by using a multiplication instead. The multiplication can never overflow
    an int because the sin-factor is only an int16_t.

    Affected the FATE-tests filter-concat and filter-concat-vfr.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/asrc_sine.c
  • avcodec/pictordec : runtime error : left shift of 15 by 28 places cannot be represented...

    21 mars 2017, par Michael Niedermayer
    avcodec/pictordec : runtime error : left shift of 15 by 28 places cannot be represented in type ’int’
    

    Fixes : 898/clusterfuzz-testcase-6149765467209728

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/pictordec.c
  • avcodec/ra144enc : Fix invalid left shift of negative number

    22 janvier 2020, par Andreas Rheinhardt
    avcodec/ra144enc : Fix invalid left shift of negative number
    

    by replacing it with a multiplication. Said multiplication can't
    overflow an int32_t because lpc_coefs is limited to 16 bit precision.

    Fixes the FACE-test acodec-ra144 as well as part of #8217.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ra144enc.c