Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (78)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (9066)

  • lavf/rtpdec : fix RTCP SR packet length check

    24 avril, par Marvin Scholz
    lavf/rtpdec : fix RTCP SR packet length check
    

    The minimum valid packet length is 28, given that the length includes
    the packet header.

    This didn't cause any issues so far as the code did not care about the
    last two fields in the SR section, but will be relevant in a future
    commit.

    • [DH] libavformat/rtpdec.c
  • avcodec/cbs_h265 : fix range of sps_max_sub_layers_minus1

    8 juillet 2024, par James Almer
    avcodec/cbs_h265 : fix range of sps_max_sub_layers_minus1
    

    The VPS referenced by the SPS must always be present as the max value for
    sps_max_sub_layers_minus1 is vps_max_sub_layers_minus1. This replaces a buggy
    custom range check for the aforementioned field.
    Also, add the missing conformance check for sps_temporal_id_nesting_flag while
    at it.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/cbs_h265_syntax_template.c
  • How to modify SPS/PPS aka Codec Private data of a mkv file

    13 novembre 2019, par Minh Nghĩa

    I encode my clip in 5 parts (output is x265 in MKV), using -ss and -t to seek to cut position. Now mkvtoolnix refuses to merge the encoded files, warning that codec private data doesn't match.

    From this question in mkvtoolnix repo, I learned that the codec private data is encoded in PPS/SPS field of the file. I check the encoding settings from mediainfo, and found that all settings are the same, just one file has a different numa-pool argument. I think my files can still be merged.

    How can I edit SPS/PPS data to fool mkvmerge into merging my files ? Thanks !