Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (111)

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

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

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

Sur d’autres sites (7943)

  • Merge commit ’8ddfa5ae5ef64a25dd087d74954ebdb9081f0d67’

    31 mars 2017, par James Almer
    Merge commit ’8ddfa5ae5ef64a25dd087d74954ebdb9081f0d67’
    

    * commit ’8ddfa5ae5ef64a25dd087d74954ebdb9081f0d67’ :
    vf_drawtext : Drop wrong void* cast

    This commit is a noop, see 4c96985af1b8870482b6b6ef9120960633f62cee

    Merged-by : James Almer <jamrial@gmail.com>

  • avutil/aes : Don't use misaligned pointers

    21 octobre 2022, par Andreas Rheinhardt
    avutil/aes : Don't use misaligned pointers
    

    The AES code uses av_aes_block, a union consisting of
    uint64_t[2], uint32_t[4], uint8_t[4][4] and uint8_t[16].
    subshift() performs byte-wise manipulations of two av_aes_blocks,
    but when encrypting, it does so with a shift of two bytes ;
    more precisely, it uses
    "av_aes_block *s1 = (av_aes_block *) (s0[0].u8 - s)"
    and lateron uses the uint8_t[16] member to access s0.
    Yet av_aes_block requires to be suitably aligned for
    the uint64_t[2] member, which s0[0].u8 - 2 is certainly
    not. This is in violation of 6.3.2.3 (7) of C11. UBSan
    reports this in the aes_ctr, mov-3elist-encrypted,
    mov-frag-encrypted, mov-tenc-only-encrypted and srtp
    tests.
    Furthermore, there is another issue here : The pointer points
    outside of s0 ; this works, because all the accesses lateron
    use an index >= 3. (Clang-)UBSan reports this as
    "runtime error : index -2 out of bounds for type 'uint8_t[16]'".

    This commit fixes both of these issues : The latter issue
    is fixed by applying an offset of "+ 3" during the cast
    and subtracting this from the indices used lateron.
    The former issue is solved by not casting to av_aes_block*
    at all ; instead simply cast to unsigned char*.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavutil/aes.c
  • Canopus HQ/HQA decoder

    9 avril 2015, par Vittorio Giovara
    Canopus HQ/HQA decoder
    

    Based on work by Kostya Shishkov <kostya.shishkov@gmail.com>.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] Changelog
    • [DBH] doc/general.texi
    • [DBH] libavcodec/Makefile
    • [DBH] libavcodec/allcodecs.c
    • [DBH] libavcodec/avcodec.h
    • [DBH] libavcodec/codec_desc.c
    • [DBH] libavcodec/hq_hqa.c
    • [DBH] libavcodec/hq_hqa.h
    • [DBH] libavcodec/hq_hqadata.c
    • [DBH] libavcodec/hq_hqadsp.c
    • [DBH] libavcodec/hq_hqadsp.h
    • [DBH] libavcodec/version.h
    • [DBH] libavformat/riff.c
    • [DBH] tests/fate/video.mak
    • [DBH] tests/ref/fate/canopus-hq_hqa-hq
    • [DBH] tests/ref/fate/canopus-hq_hqa-hqa
    • [DBH] tests/ref/fate/canopus-hq_hqa-inter