Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (58)

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

  • avcodec/cbs_av1 : don't abort when splitting Temporal Units containing OBUs with no...

    15 novembre 2018, par James Almer
    avcodec/cbs_av1 : don't abort when splitting Temporal Units containing OBUs with no obu_size field
    

    The ISOBMFF and Matroska specs allow the last OBU in a Sample/Block to have
    obu_has_size_field equal to 0.

    Reviewed-by : Mark Thompson <sw@jkqxz.net>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/cbs_av1.c
  • H264 : decode series of nal units with ffmpeg

    7 novembre 2018, par jsim

    I tried to decode a series of nal units with ffmpeg (libavcodec) but I get a "no frame" error. I produced the nal units with the guideline at How does one encode a series of images into H264 using the x264 C API ?. I tried the following strategy for decoding :

    avcodec_init();  
    avcodec_register_all();  
    AVCodec* pCodec;  
    pCodec=lpavcodec_find_decoder(CODEC_ID_H264);  
    AVCodecContext* pCodecContext;  
    pCodecContext=lpavcodec_alloc_context();  
    avcodec_open(pCodecContext,pCodec);  
    AVFrame *pFrame;  
    pFrame=avcodec_alloc_frame();
    //for every nal unit:    
       int frameFinished=0;  
       //nalData2 is nalData without the first 4 bytes
       avcodec_decode_video(pCodecContext,pFrame,&amp;frameFinished,(uint8_t*) nalData2,nalLength);

    I passed all units I got to this code but frameFinished stays 0. I guess there must be something wrong with the pCodecContext setup. Can someone send me a working example ?

    Thank you

  • H264 : decode series of nal units with ffmpeg

    7 novembre 2018, par jsim

    I tried to decode a series of nal units with ffmpeg (libavcodec) but I get a "no frame" error. I produced the nal units with the guideline at How does one encode a series of images into H264 using the x264 C API ?. I tried the following strategy for decoding :

    avcodec_init();  
    avcodec_register_all();  
    AVCodec* pCodec;  
    pCodec=lpavcodec_find_decoder(CODEC_ID_H264);  
    AVCodecContext* pCodecContext;  
    pCodecContext=lpavcodec_alloc_context();  
    avcodec_open(pCodecContext,pCodec);  
    AVFrame *pFrame;  
    pFrame=avcodec_alloc_frame();
    //for every nal unit:    
       int frameFinished=0;  
       //nalData2 is nalData without the first 4 bytes
       avcodec_decode_video(pCodecContext,pFrame,&amp;frameFinished,(uint8_t*) nalData2,nalLength);

    I passed all units I got to this code but frameFinished stays 0. I guess there must be something wrong with the pCodecContext setup. Can someone send me a working example ?

    Thank you