Recherche avancée

Médias (0)

Mot : - Tags -/gis

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (100)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9027)

  • avformat/matroskadec : Sanity check codec_id/track type

    7 décembre 2020, par Michael Niedermayer
    avformat/matroskadec : Sanity check codec_id/track type
    

    Fixes : memleak
    Fixes : 27766/clusterfuzz-testcase-minimized-ffmpeg_dem_MATROSKA_fuzzer-5198300814508032

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

    • [DH] libavformat/matroskadec.c
  • Disable default subtitle track with ffmpeg

    23 février 2023, par anonymous

    I'm creating an MKV container with 4 different files :

    &#xA;

      &#xA;
    • video.mp4
    • &#xA;

    • audio_en.mp4
    • &#xA;

    • audio_es.mp4
    • &#xA;

    • subtitles.ass
    • &#xA;

    &#xA;

    For that I'm using the following ffmpeg script :

    &#xA;

    ffmpeg -i video.mp4 -i audio_es.mp4 -i audio_en.mp4 -i subtitles.ass \&#xA;-map 0:v -map 1:a -map 2:a -map 3:s \&#xA;-metadata:s:a:0 language=spa \&#xA;-metadata:s:a:1 language=eng \&#xA;-metadata:s:s:0 language=spa -disposition:s:0 -default \&#xA;-default -c:v copy -c:a copy -c:a copy -c:s copy result.mkv&#xA;

    &#xA;

    The result.mkv looks awesome, everything works as expected except for one thing : subtitles are still set as the default track, so players like VLC shows them automatically. I've already tried plenty of different ways to avoid that to happen with the disposition flag but I cannot make it work.

    &#xA;

    How should I modify the script so that the MKV does not have the subtitles track marked as default ?

    &#xA;

    Thanks in advance !

    &#xA;

  • avcodec/cfhd : Keep track of which subbands have been read

    3 avril 2021, par Michael Niedermayer
    avcodec/cfhd : Keep track of which subbands have been read
    

    This avoids use of uninitialized data
    also several checks are inside the band reading code
    so it is important that it is run at least once

    Fixes : out of array accesses
    Fixes : 28209/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CFHD_fuzzer-5684714694377472
    Fixes : 32124/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CFHD_fuzzer-5425980681355264
    Fixes : 30519/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CFHD_fuzzer-4558757155700736

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

    • [DH] libavcodec/cfhd.c
    • [DH] libavcodec/cfhd.h