Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (61)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (10003)

  • avfilter : add overlay vaapi filter

    22 novembre 2021, par Xinpeng Sun
    avfilter : add overlay vaapi filter
    

    Overlay one video on the top of another.

    It takes two inputs and has one output. The first input is the "main" video on
    which the second input is overlaid. This filter requires same memory layout for
    all the inputs.

    An example command to use this filter to overlay overlay.mp4 at the top-left
    corner of the main.mp4 :

    ffmpeg -init_hw_device vaapi=foo :/dev/dri/renderD128 \
    - hwaccel vaapi -hwaccel_device foo -hwaccel_output_format vaapi -c:v h264 -i main.mp4 \
    - hwaccel vaapi -hwaccel_device foo -hwaccel_output_format vaapi -c:v h264 -i overlay.mp4 \
    - filter_complex "[0:v][1:v]overlay_vaapi=0:0:100:100:0.5[t1]" \
    - map "[t1]" -an -c:v h264_vaapi -y out_vaapi.mp4

    Signed-off-by : U. Artie Eoff <ullysses.a.eoff@intel.com>
    Signed-off-by : Xinpeng Sun <xinpeng.sun@intel.com>
    Signed-off-by : Zachary Zhou <zachary.zhou@intel.com>
    Signed-off-by : Fei Wang <fei.w.wang@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] configure
    • [DH] doc/filters.texi
    • [DH] libavfilter/Makefile
    • [DH] libavfilter/allfilters.c
    • [DH] libavfilter/version.h
    • [DH] libavfilter/vf_overlay_vaapi.c
  • swscale/utils : return better error code from initFilter()

    13 juin 2020, par Limin Wang
    swscale/utils : return better error code from initFilter()
    

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libswscale/utils.c
  • avcodec/ratecontrol : fix the integer overflow after long time run

    30 mai 2020, par Limin Wang
    avcodec/ratecontrol : fix the integer overflow after long time run
    

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavcodec/ratecontrol.c