Recherche avancée

Médias (91)

Autres articles (53)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (8730)

  • avcodec/zmbv : Don't free uninitialized z_stream

    5 mai 2021, par Andreas Rheinhardt
    avcodec/zmbv : Don't free uninitialized z_stream
    

    It is not documented to be safe to call inflateEnd() on a z_stream
    that has not been successfully initialized via inflateInit() ; so
    record whether it has been successfully initialized.

    Reviewed-by : Tomas Härdin <tjoppen@acc.umu.se>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/zmbv.c
  • mov : free the dv demux context with avformat_free_context()

    19 juin 2014, par Anton Khirnov
    mov : free the dv demux context with avformat_free_context()
    
    • [DBH] libavformat/mov.c
  • FFmpeg, av_frame_free - Does not free all memory allocated by av_frame_clone

    9 juillet 2018, par user3104363

    I want to clone AVFrame. For this purpose, I call av_frame_clone function.
    Then I want to free all memory allocated by old AVFrame. For this purpose I call av_frame_free function. Memory which is pointer by data is not freed by av_frame_free function. So what is the correct way of cloning and deleting a AVFrame in ffmpeg ?

    Thanks for responses.