Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (38)

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (3738)

  • fftools/ffprobe : Avoid overflow when calculating DAR

    3 mai 2024, par Derek Buitenhuis
    fftools/ffprobe : Avoid overflow when calculating DAR
    

    Both the codecpar's width and height, and the SAR num and den are
    ints, which can overflow. Cast to int64_t, which is what av_reduce
    takes.

    Without this, occasionally, display_aspect_ratio can be negative in
    ffprobe's -show_stream output.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] fftools/ffprobe.c
  • avutil/frame : Rename av_frame_side_data_get and add wrapper for it

    22 mars 2024, par Andreas Rheinhardt
    avutil/frame : Rename av_frame_side_data_get and add wrapper for it
    

    av_frame_side_data_get() has a const AVFrameSideData * const *sd
    parameter ; so calling it with an AVFramesSideData **sd like
    AVCodecContext.decoded_side_data (or with a AVFramesSideData * const
    *sd) is safe, but the conversion is not performed automatically
    in C. All users of this function therefore resort to a cast.

    This commit changes this : av_frame_side_data_get() is renamed
    to av_frame_side_data_get_c() ; furthermore, a static inline
    wrapper for it name av_frame_side_data_get() is added
    that accepts an AVFramesSideData * const * and converts this
    to const AVFramesSideData * const * in a Wcast-qual safe way.

    This also allows to remove the casts from the current users.

    Reviewed-by : Jan Ekström <jeebjp@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] doc/APIchanges
    • [DH] libavcodec/libsvtav1.c
    • [DH] libavcodec/libx264.c
    • [DH] libavcodec/libx265.c
    • [DH] libavutil/frame.c
    • [DH] libavutil/frame.h
  • avfilter/dnn : Remove a level of dereference

    7 mai 2024, par Zhao Zhili
    avfilter/dnn : Remove a level of dereference
    

    For code such as 'model->model = ov_model' is confusing. We can
    just drop the member variable and use cast to get the subclass.

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>
    Reviewed-by : Wenbin Chen <wenbin.chen@intel.com>
    Reviewed-by : Guo Yejun <yejun.guo@intel.com>

    • [DH] libavfilter/dnn/dnn_backend_openvino.c
    • [DH] libavfilter/dnn/dnn_backend_tf.c
    • [DH] libavfilter/dnn/dnn_backend_torch.cpp
    • [DH] libavfilter/dnn_filter_common.c
    • [DH] libavfilter/dnn_interface.h