Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (30)

  • 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" ;

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (3075)

  • avfilter/af_aiir : make it clear that transfer function is digital one

    29 mai 2020, par Paul B Mahol
    avfilter/af_aiir : make it clear that transfer function is digital one
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/af_aiir.c
  • avcodec/jpeg2000dec : clear pointer which become stale in get_ppt()

    31 mai 2020, par Michael Niedermayer
    avcodec/jpeg2000dec : clear pointer which become stale in get_ppt()
    

    Fixes : use after free
    Fixes : 22484/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_JPEG2000_fuzzer-5671488765296640

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by : Gautam Ramakrishnan <gautamramk@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/jpeg2000dec.c
  • How to efficiently clear ffmpeg buffer

    23 juillet 2020, par KmanOfficial

    I am using Chiaki (https://github.com/thestr4ng3r/chiaki/) - A Open Source Video Streaming Application for the PS4.

    &#xA;

    I have one issue though. The stream successfully shows the playstation but after about 60 seconds. The stream freezes and gets stuck on the last processed frame until I restart the application. I believe the issue is in the C++ file - (https://github.com/thestr4ng3r/chiaki/blob/master/gui/src/videodecoder.cpp) and the issue is specifically here : `

    &#xA;

    void VideoDecoder::PushFrame(uint8_t *buf, size_t buf_size)&#xA;{&#xA;    {&#xA;        QMutexLocker locker(&amp;mutex);&#xA;&#xA;    AVPacket packet;&#xA;    av_init_packet(&amp;packet);&#xA;    packet.data = buf;&#xA;    packet.size = buf_size;&#xA;    int r;&#xA;send_packet:&#xA;        r = avcodec_send_packet(codec_context, &amp;packet);&#xA;        if(r != 0)&#xA;        {&#xA;            if(r == AVERROR(EAGAIN))&#xA;            {&#xA;                CHIAKI_LOGE(log, "AVCodec internal buffer is full removing frames before pushing");&#xA;                AVFrame *frame = av_frame_alloc();&#xA;                if(!frame)&#xA;                {&#xA;                    CHIAKI_LOGE(log, "Failed to alloc AVFrame");&#xA;                    return;&#xA;                }&#xA;                r = avcodec_receive_frame(codec_context, frame);&#xA;                av_frame_free(&amp;frame);&#xA;                if(r != 0)&#xA;                {&#xA;                    CHIAKI_LOGE(log, "Failed to pull frame");&#xA;                    return;&#xA;                }&#xA;                goto send_packet;&#xA;            }&#xA;            else&#xA;            {&#xA;                char errbuf[128];&#xA;                av_make_error_string(errbuf, sizeof(errbuf), r);&#xA;                CHIAKI_LOGE(log, "Failed to push frame: %s", errbuf);&#xA;                return;&#xA;            }&#xA;        }&#xA;    }&#xA;&#xA;    emit FramesAvailable();&#xA;}&#xA;

    &#xA;

    `

    &#xA;

    I believe so as the application log constantly prints this logged message : "AVCodec internal buffer is full removing frames before pushing"

    &#xA;

    I've tried looking at the ffmpeg manual and I am struggling on how to flush the internal buffer to get the stream constantly flowing can anyone point me in the correct direction. Thank you.

    &#xA;