Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (105)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

Sur d’autres sites (16061)

  • avformat/matroskaenc : Check chapter ids for duplicates

    15 mars 2021, par Andreas Rheinhardt
    avformat/matroskaenc : Check chapter ids for duplicates
    

    Up until now, there has been no check that each chapter has a unique id ;
    there was only a check for whether a chapter id is zero (this happens
    often when the chapters originated from a format that lacks the concept
    of chapter id and simply counts from zero) which is invalid in Matroska.
    In this case the chapter ids are offset by 1 to make them nonnegative.
    Yet offsetting won't fix duplicate ids, therefore this is changed to
    simply create new chapter uids when the input chapter uids don't conform
    to the requirements of Matroska (in which case it can be presumed that
    they did not originate from Matroska, so that we don't need to bother
    to preserve them).

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

    • [DH] libavformat/matroskaenc.c
  • ffmpeg start end approximation for CHAPTER metadata differs from ffprobe output

    17 mai 2021, par loretoparisi

    When printing the ffmetadata with the ffmpeg command

    &#xA;

    ffmpeg -i INPUT.mp4 -f ffmetadata FFMETADATAFILE&#xA;

    &#xA;

    the approximation of the fields start and end in the [CHAPTER] object like :

    &#xA;

    [CHAPTER]&#xA;TIMEBASE=1/1000&#xA;START=533975&#xA;END=586975&#xA;title=Meltdown/Spectre patched&#xA;

    &#xA;

    is slightly different (at some level of approximation) from the same metadata, obtained using the JSON output with ffprobe the command :

    &#xA;

    ffprobe -i INPUT.mp4 -show_chapters -print_format json&#xA;

    &#xA;

    that is

    &#xA;

      {&#xA;        "id": 2,&#xA;        "time_base": "1/1000",&#xA;        "start": 534000,&#xA;        "start_time": "534.000000",&#xA;        "end": 587000,&#xA;        "end_time": "587.000000",&#xA;        "tags": {&#xA;            "title": "Meltdown/Spectre patched"&#xA;        }&#xA;    }&#xA;

    &#xA;

    Any way to control the approximation in the ffprobe output ?

    &#xA;

  • avformat/utils : keep chapter monotonicity on chapter updates

    1er février 2022, par Michael Niedermayer
    avformat/utils : keep chapter monotonicity on chapter updates
    

    Updating a chapter with the same id does not break monotonicity
    Fixes : Timeout
    Fixes : 43727/clusterfuzz-testcase-minimized-ffmpeg_dem_MOV_fuzzer-4960623367159808

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