Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

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

Autres articles (105)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (12767)

  • avcodec/cbs_av1 : keep separate reference frame state for reading and writing

    18 novembre 2019, par James Almer
    avcodec/cbs_av1 : keep separate reference frame state for reading and writing
    

    In scearios where a Temporal Unit is written right after reading it using the same
    CBS context (av1_metadata, av1_frame_merge, etc), the reference frame state used
    by the writer must not be the state that's the result of the reader having already
    parsed the current frame in question.

    This fixes writing Switch frames, and frames using short ref signaling.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/cbs_av1.c
    • [DH] libavcodec/cbs_av1.h
  • cbs_h2645 : Allocate all internal buffers with padding

    16 octobre 2018, par Mark Thompson
    cbs_h2645 : Allocate all internal buffers with padding
    

    Any of these buffers (for both H.264 and H.265) might reasonably be
    parsed using the bitstream reader, so include padding on all of them.

    • [DH] libavcodec/cbs_h2645.c
    • [DH] libavcodec/cbs_h264_syntax_template.c
  • ffmpeg : memory not freed on multi-threaded decoding

    31 mai 2020, par toby_e

    I am developing a video player based on the ffmpeg libraries and have run into a rather strange memory increase or failure to decrease memory when unloading a video file. My code is based on various examples of demuxing, decoding and scaling video and audio frames - but with the excecption that i have put each of these steps into seperate threads to avoid waiting for time-consuming calls. Everything works perfectly, but Visual Studio shows that Process Memory does not decrease when i call the various avclose and avfree calls. My Windows task manager confirms these memory increases that continue into the gigabyes !

    &#xA;&#xA;

    My player is roughly made up by two clases with the following calls to the ffmpeg libraries :

    &#xA;&#xA;

    &#xA;&#xA;

    READER :

    &#xA;&#xA;

    Open (on main thread) : avformat_open_input(), avformat_find_stream_info()

    &#xA;&#xA;

    Read (on seperate thread) : av_read_frame()

    &#xA;&#xA;

    Close (on main thrad) : avformat_close_input()

    &#xA;&#xA;

    DECODER :

    &#xA;&#xA;

    Open (on main thread) : avcodec_find_decoder(), avcodec_alloc_context3(), avcodec_parameters_to_context(), avcodec_open2()

    &#xA;&#xA;

    Decode (on seperate thread) : avcodec_send_packet(), avcodec_receive_frame()

    &#xA;&#xA;

    Close (on main thread) : avcodec_free_context()

    &#xA;&#xA;

    &#xA;&#xA;

    Is threre any issues with opening/closing on the main thread and reading/deconding on other threads ?

    &#xA;