Recherche avancée

Médias (0)

Mot : - Tags -/latitude

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

Autres articles (33)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (6261)

  • avformat/matroskaenc : Only write Cues at the front if space has been reserved

    2 mai 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Only write Cues at the front if space has been reserved
    

    If the AVIOContext for output was unseekable when writing the header,
    no space for Cues would be reserved even if the reserve_index_space
    option was used (because it is reasonable to expect that one can't seek
    back to the beginning to write the Cues anyway). But if the AVIOContext
    was seekable when writing the trailer, it was presumed that space for
    the Cues had been reserved when the reserve_index_space option indicated
    so even when it was not. As a result, the beginning of the file would be
    overwritten.

    This commit fixes this : If the reserve_index_space option had been used
    and no space has been reserved in advance because of unseekability when
    writing the header, then no attempt to write Cues will be performed
    when writing the trailer ; after all, writing them at the front is
    impossible and writing them at the end is probably undesired.

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

    • [DH] libavformat/matroskaenc.c
  • avformat/hlsenc : Add deinit function

    15 décembre 2019, par Andreas Rheinhardt
    avformat/hlsenc : Add deinit function
    

    This fixes memleaks in instances such as :
    a) When an allocation fails at one of the two places in hls_init() where
    the error is returned immediately without goto fail first.
    b) When an error happens when writing the header.
    c) When an allocation fails at one of the three places in
    hls_write_trailer() where the error is returned immediately without goto
    fail first.
    d) When one decides not to write the trailer at all (e.g. because of
    errors when writing packets).
    Furthermore, it removes code duplication and allows to return
    immediately, without goto fail first.

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

    • [DH] libavformat/hlsenc.c
  • 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