Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (51)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (3221)

  • avcodec/h265_metadata : Add options to set width/height after crop

    23 mai 2024, par Zhao Zhili
    avcodec/h265_metadata : Add options to set width/height after crop
    

    It's a common usecase to request a video size after crop. Before
    this patch, user must know the video size before crop, then set
    crop_right/crop_bottom accordingly. Since HEVC can have different
    CTU size, it's not easy to get/deduce the video size before crop.
    With the new width/height options, there is no such requirement.

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] doc/bitstream_filters.texi
    • [DH] libavcodec/bsf/h265_metadata.c
    • [DH] libavcodec/version.h
  • avcodec/mediacodecenc : workaround the alignment requirement only for H.264

    23 mai 2024, par Zhao Zhili
    avcodec/mediacodecenc : workaround the alignment requirement only for H.264
    

    There is no bsf for other codecs to modify crop info except H.265.
    For H.265, the assumption that FFALIGN(width, 16)xFFALIGN(height, 16)
    is the video resolution can be wrong, since the encoder can use CTU
    larger than 16x16. In that case, use FFALIGN(width, 16) - width
    as crop_right is incorrect. So disable the workaround for H.265 now.

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavcodec/mediacodecenc.c
  • avcodec/videotoolboxenc : Fix variable type of AV_OPT_TYPE_BOOL

    16 juillet 2024, par Zhao Zhili
    avcodec/videotoolboxenc : Fix variable type of AV_OPT_TYPE_BOOL
    

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavcodec/videotoolboxenc.c