Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (50)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • Remove (defined _MSC_VER) from cpp workaround

    9 décembre 2015, par Erik de Castro Lopo
    Remove (defined _MSC_VER) from cpp workaround
    

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] include/FLAC++/decoder.h
    • [DH] include/FLAC++/encoder.h
  • Error out when asked to store an picture that is too large

    9 janvier 2016, par Erik de Castro Lopo
    Error out when asked to store an picture that is too large
    

    Picture size must be smaller than the maximum block size.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/libFLAC/metadata_object.c
    • [DH] src/share/grabbag/picture.c
  • avformat/ffrtmpcrypt : Fix int-conversion warning

    22 décembre 2023, par Frank Plowman
    avformat/ffrtmpcrypt : Fix int-conversion warning
    

    The gcrypt definition of `bn_new` used to use the return statement
    on errors, with an AVERROR return value, regardless of the signature
    of the function where the macro is used - it is called in
    `dh_generate_key` and `ff_dh_init` which return pointers. As a result,
    compiling with gcrypt and the ffrtmpcrypt protocol resulted in an
    int-conversion warning. GCC 14 may upgrade these to errors [1].

    This patch fixes the problem by changing the macro to remove `AVERROR`
    and instead set `bn` to null if the allocation fails. This is the
    behaviour of all the other `bn_new` implementations and so the result is
    already checked at all the callsites. AFAICT, this should be the only
    change needed to get ffmpeg off Fedora's naughty list of projects with
    warnings which may be upgraded to errors in GCC 14 [2].

    [1] : https://gcc.gnu.org/pipermail/gcc/2023-May/241264.html
    [2] : https://www.mail-archive.com/devel@lists.fedoraproject.org/msg196024.html

    Signed-off-by : Frank Plowman <post@frankplowman.com>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/rtmpdh.c