Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (88)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (18815)

  • avcodec/v210dec : move the stride read after its fully initialized

    1er décembre 2019, par Michael Niedermayer
    avcodec/v210dec : move the stride read after its fully initialized
    

    Fixes : out of array read
    Fixes : 19129/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_V210_fuzzer-5068171023482880
    Maybe fixes : 19130/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_V210_fuzzer-5637264407527424

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/v210dec.c
  • avformat/mpegtsenc : fix first_pcr initial update

    3 novembre 2021, par Maksym Veremeyenko
    avformat/mpegtsenc : fix first_pcr initial update
    

    Commit 6f36eb0da71d22aadf8f056f0966bd86656ea57e claim it fixes endless loop on
    package generation if muxrate specified and copyts used. But actually it does
    not work properly if -mpegts_copyts 1 is specified :

    ffmpeg -y -copyts -i loewe.ts -c:v libx264 -x264opts nal-hrd=cbr:force-cfr=1 -b:v 3500k -minrate 3500k -maxrate 3500k -bufsize 1000k -c:a mp2 -f mpegts -mpegts_copyts 1 -muxrate 4500k -vframes 1000 test.ts

    ffmpeg generate huge file until it reach zero-based pcr value equal to first dts.

    Attached patch fixes it.

    Reviewed-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mpegtsenc.c
  • avcodec/libopenh264enc : set iEntropyCodingModeFlag by coder option

    14 janvier 2022, par Limin Wang
    avcodec/libopenh264enc : set iEntropyCodingModeFlag by coder option
    

    For high/main profile, user can choose to use cavlc by specify "-coder cavlc",
    for default, it'll will use cabac, if it's baseline, we'll use cavlc by specs anyway.

    ffmpeg -y -f lavfi -i testsrc -c:v libopenh264 -profile:v main -coder cavlc -frames:v 1 -bsf trace_headers -f null -
    before the patch :
    entropy_coding_mode_flag 0 = 1

    after the patch :
    entropy_coding_mode_flag 0 = 0

    Reviewed-by : Martin Storsjö <martin@martin.st>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavcodec/libopenh264enc.c