Recherche avancée

Médias (91)

Autres articles (3)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

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

  • avcodec/options_table : make AVCodecContext->profile search for child constants

    10 mai 2020, par Marton Balint
    avcodec/options_table : make AVCodecContext->profile search for child constants
    

    This change makes it possible for child encoders to define custom profile
    option names which can be used for setting the AVCodecContext->profile.

    Also rename unit name to something rather unique, so it won't be used elsewhere.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/codecs.texi
    • [DH] libavcodec/options_table.h
  • avformat/webm_chunk : Copy more information to the child AVFormatContext

    29 février 2020, par Andreas Rheinhardt
    avformat/webm_chunk : Copy more information to the child AVFormatContext
    

    In particular the flags are important so that AVFMT_FLAG_BITEXACT can be
    honoured by the child muxer.

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

    • [DH] libavformat/webm_chunk.c
  • avformat/webm_chunk : Use API functions for child muxer

    29 février 2020, par Andreas Rheinhardt
    avformat/webm_chunk : Use API functions for child muxer
    

    instead of calling the write_header/packet/trailer functions directly
    via the function pointers. Also, use distinct AVStreams for the child
    AVFormatContext (up until now the two AVFormatContexts shared their
    AVStreams because allocating their own was deemed too onerous).

    Using the function pointers directly meant that the Matroska muxer's
    init-function was never called, because init-functions were only
    introduced a few months after webm_chunk has been added and no one
    thought of/bothered to adapt webm_chunk for this (when the init-function
    was added in b287d7ea, the code setting the timebase was moved to it,
    so that the timebases were no longer set to ms-precision when using
    the webm_chunk muxer ; this has been fixed after some time in 42a635dd
    by setting the timebases direcly (instead of calling the init-function)).

    And when 982a98a0 added a deinit-function for the Matroska muxer, it
    introduced memleaks in webm_chunk, because the child muxer's internal
    structures were no longer freed when calling write_trailer directly.
    (Given that the init function has never ever been called, the child
    muxer has never ever been properly initialized, so that the
    deinit-function was not called when freeing the child context.)

    This commit stops calling the function pointers directly and instead
    uses the standard API functions for muxers. This fixes the above
    mentioned memleaks. (Memleaks are still possible on error. This will be
    fixed in a future commit that adds a deinit-function to webm_chunk
    itself.)

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

    • [DH] libavformat/webm_chunk.c