Recherche avancée

Médias (91)

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (11044)

  • avformat/matroskaenc : Move adding SeekEntry into end_ebml_master_crc32()

    27 avril 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Move adding SeekEntry into end_ebml_master_crc32()
    

    Up until now, SeekEntries were already added before
    start_ebml_master_crc32() was even called and before we were actually
    sure that we really write the element the SeekHead references : After
    all, we might also error out later ; and given that the allocations
    implicit in dynamic buffers should be checked, end_ebml_master_crc32()
    will eventually have to return errors itself, so that it is the right
    place to add SeekHead entries.

    The earlier behaviour is of course a remnant of the time in which
    start_ebml_master_crc32() really did output something, so that the
    position before start_ebml_master_crc32() needed to be recorded.
    Erroring out later is also not as dangerous as it seems because in
    this case no SeekHead will be written (if it happened when writing
    the header, the whole muxing process would abort ; if it happened
    when writing the trailer (when writing chapters not available initially),
    writing the trailer would be aborted and no SeekHead containing the
    bogus chapter entry would be written).

    This commit does not change the way the SeekEntries are added for those
    elements that are output preliminarily ; this is so because the SeekHead
    is written before those elements are finally output and doing it
    otherwise would increase the amount of seeks.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c
  • avformat/aviobuf, nutenc : Move ff_puv_v, ff_get_v_length to nutenc.c

    9 avril 2020, par Andreas Rheinhardt
    avformat/aviobuf, nutenc : Move ff_puv_v, ff_get_v_length to nutenc.c
    

    and make it static again.

    These functions have been moved from nutenc to aviobuf and internal.h
    in f8280ff4c00eeaa245085fa9691035203abd168c in order to use them in a
    forthcoming patch in utils.c. Said patch never happened, so this commit
    moves them back and makes them static, effectively reverting said
    commit as well as f8280ff4c00eeaa245085fa9691035203abd168c (which added
    the ff-prefix to these functions).

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/aviobuf.c
    • [DH] libavformat/internal.h
    • [DH] libavformat/nutenc.c
  • avformat/matroskaenc : Warn that WebM doesn't support Attachments

    2 novembre 2019, par Andreas Rheinhardt
    avformat/matroskaenc : Warn that WebM doesn't support Attachments
    

    As WebM doesn't support Attachments, the Matroska muxer drops them when
    in WebM mode. This happened silently until this commit which adds a
    warning for this.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c