Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (59)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (7271)

  • 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
  • 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
  • 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