Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (105)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (12059)

  • Final pre-v2.x deprecations.

    23 janvier 2014, par JamesMGreene
    Final pre-v2.x deprecations.
    

    Fixes #289.

  • More efficient way to read out certain video frames

    2 juin 2018, par Kaskorian

    Is there a more efficient way to read out certain frames of a video (for example the 30th frame) than the way shown below ?

    using AForge.Video.FFMPEG;

    private Bitmap GetThumbnail(string path, int frame)
    {
       VideoFileReader reader = new VideoFileReader();
       reader.Open(path);

       for (int i = 1; i < frame; i++)
           reader.ReadVideoFrame();

       return reader.ReadVideoFrame();
    }

    The problem here is that you have to read out all the previous frames as well. So to read out the 30th frame you really have to read 30 frames and not the just the 30th.

    Any ideas for other ways that are far more efficient ?

  • libavcodec/mpeg12dec : Check input for minimal frame size

    4 septembre 2019, par Michael Niedermayer
    libavcodec/mpeg12dec : Check input for minimal frame size
    

    Fixes : Timeout (35sec -> 6sec)
    Fixes : 16901/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEGVIDEO_fuzzer-5729024726269952
    Fixes : 16901/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEGVIDEO_fuzzer-5642388592132096

    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/mpeg12dec.c