Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (31)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (4460)

  • avcodec/pnm : skip reading trailing bytes in get_pnm()

    1er août 2019, par Michael Niedermayer
    avcodec/pnm : skip reading trailing bytes in get_pnm()
    

    None of the keys we support is that long and other keys
    lead to decoder failure. None of the values is expected
    to be longer, they are all numbers or short keywords.

    This simplifies the code

    Fixes : Timeout (9sec->43ms)
    Fixes : 15177/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PAM_fuzzer-5080556716425216

    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/pnm.c
  • avformat/mpeg : Remove secondary packet for reading VobSub

    8 octobre 2019, par Andreas Rheinhardt
    avformat/mpeg : Remove secondary packet for reading VobSub
    

    When vobsub_read_packet() reads a packet, it uses a dedicated AVPacket
    to get the subtitle timing and position from an FFDemuxSubtitlesQueue
    (which has been filled with this data during reading the idx file in
    vobsub_read_header) ; afterwards the actual subtitle data is read into
    the packet destined for output and the timing and position are copied
    to this packet. Afterwards, the local packet is unreferenced.

    This can be simplified : Simply use the output packet to get the timing
    and position from the FFDemuxSubtitlesQueue. The packet's size will be
    zero afterwards, so that it can be directly used to read the actual
    subtitle data. This makes copying the packet fields as well as
    unreferencing the local packet unecessary and also removes an instance
    of usage of sizeof(AVPacket) in libavformat.

    The only difference is that the returned packet will already be flagged
    as a keyframe. This currently only happens in compute_pkt_fields().

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mpeg.c
  • avformat/oggparseogm : Check available data before reading global header

    11 avril 2017, par Michael Niedermayer
    avformat/oggparseogm : Check available data before reading global header
    

    Fixes use of uninitialized data

    Found-by : Thomas Guilbert <tguilbert@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/oggparseogm.c