Recherche avancée

Médias (91)

Autres articles (92)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (12820)

  • indeo4 : Decode all or nothing of a band header.

    17 mai 2018, par Michael Niedermayer
    indeo4 : Decode all or nothing of a band header.
    

    This avoids inconsistent value combinations.
    Alternatively it would be possible to add more checks and careful use of
    temporary variables, but my try of this quickly seemed to become
    a rather large change.
    The disadvantage of this, is that the struct is copied back and forth.

    Fixes : index 6 out of bounds for type 'const uint16_t [5][16]'
    Fixes : 6557/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_INDEO4_fuzzer-4787296550256640

    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/indeo4.c
  • splitting a precise .ts piece with ffmpeg when doing -c:v copy

    25 juillet 2017, par Ivo

    The goal is to generate HLS-compatible MPEGTS pieces from a mkv, copying the video with -c:v copy, but transcoding the audio.

    However, since on input seeking (-ss) ffmpeg seeks to keyframe (for me, that seems to be nearest previous keyframe), I’m getting N seconds of video without audio before most of the segments, starting from the keyframe.

    Possible solutions are :

    1. Define segment offset/duration so that it actually matches the keyframes ; problem is I don’t know how to quickly extract the list of keyframes and their offsets

    2. Force ffmpeg to seek to the proper time somehow, and generate a keyframe there to start the segment with ; EDIT : I assume this is impossible since generating a keyframe changes all frames after that, which is impossible with -c:v copy

    Please do not suggest existing HLS solutions unless they demonstrate in source code a solution to the problem. ffmpeg has to be used, to generate each segment on-demand.

  • splitting a precise .ts piece with ffmpeg when doing -c:v copy

    13 février 2016, par Ivo

    The goal is to generate HLS-compatible MPEGTS pieces from a mkv, copying the video with -c:v copy, but transcoding the audio.

    However, since on input seeking (-ss) ffmpeg seeks to keyframe (for me, that seems to be nearest previous keyframe), I’m getting N seconds of video without audio before most of the segments, starting from the keyframe.

    Possible solutions are :

    1. Define segment offset/duration so that it actually matches the keyframes ; problem is I don’t know how to quickly extract the list of keyframes and their offsets

    2. Force ffmpeg to seek to the proper time somehow, and generate a keyframe there to start the segment with ; EDIT : I assume this is impossible since generating a keyframe changes all frames after that, which is impossible with -c:v copy

    Please do not suggest existing HLS solutions unless they demonstrate in source code a solution to the problem. ffmpeg has to be used, to generate each segment on-demand.