Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (62)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (6908)

  • avcodec/mediacodecdec : call MediaCodec.stop on close

    7 août 2024, par sfan5
    avcodec/mediacodecdec : call MediaCodec.stop on close
    

    Usually the MediaCodec context will be released immediately, or it needs to stay
    alive due to existing hardware buffers.

    However we can free resources early in the case of
    hw_buffer_count == 0 && refcount > 1, which can be reproduced by keeping frames
    referenced after flushing and closing. mpv currently behaves like this.

    Signed-off-by : sfan5 <sfan5@live.de>
    Signed-off-by : Matthieu Bouron <matthieu.bouron@gmail.com>

    • [DH] libavcodec/mediacodecdec_common.c
  • avformat/matroskadec : Redo EOF handling

    17 mai 2019, par Andreas Rheinhardt
    avformat/matroskadec : Redo EOF handling
    

    This commit closes the last hole in the system of checks for a
    known-length file ending too early : Now an error message is emitted
    in case the file ends directly after an EBML element.

    Furthermore, this commit adds a check and a corresponding warning
    whether there is data beyond the Matroska segment (only reasonable for
    known-length segments). If everything looks alright, then parsing is
    stopped as soon as EOF is reached (in contrast, the earlier code would
    always call matroska_resync at the end).

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

    • [DH] libavformat/matroskadec.c
  • avutil/opt : Don't use NULL for %s string in a log message

    29 mars 2020, par Andreas Rheinhardt
    avutil/opt : Don't use NULL for %s string in a log message
    

    If one calls av_opt_set() with an incorrect string to set the value of
    an option of type AV_OPT_TYPE_VIDEO_RATE, the given string is used in a
    log message via %s. This also happens when the string is actually a
    nullpointer in which case using it for %s is forbidden.

    This commit changes this by erroring out early in case of a nullpointer.

    This also fixes a warning from GCC 9.2 :
    "‘%s’ directive argument is null [-Wformat-overflow=]"

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavutil/opt.c