Recherche avancée

Médias (91)

Autres articles (57)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • 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

Sur d’autres sites (9558)

  • How to initialize video decoder with a already decoded frame ?

    27 mars, par Ragdoll Car

    Let's say I have an FFmpeg video decoder x264 initially initialized with some parameters. I am using C++ in my scenario. In normal conditions we push an encoded I-frame into such decoder and then referencing encoded P-frames.

    


    I have a special case where my I-frame is already decoded. So in my case I want to :

    


      

    • push already decoded I-frame into my decoder
    • 


    • push referencing encoded P-frames into my decoder
    • 


    


    How can I initialize the decoder state with already decoded I-frame ? Currently to bypass these limitations I have to :

    


      

    • create a new temporary encoder
    • 


    • encode already decoded I-frame
    • 


    • decode encoded I-frame
    • 


    • and then I am able to push referencing encoded P-frames
    • 


    


  • How to initialize video decoder with a already decoded frame ?

    27 mars, par Ragdoll Car

    Let's say I have an FFmpeg video decoder x264 initially initialized with some parameters. I am using C++ in my scenario. In normal conditions we push an encoded I-frame into such decoder and then referencing encoded P-frames.

    


    I have a special case where my I-frame is already decoded. So in my case I want to :

    


      

    • push already decoded I-frame into my decoder
    • 


    • push referencing encoded P-frames into my decoder
    • 


    


    How can I initialize the decoder state with already decoded I-frame ? Currently to bypass these limitations I have to :

    


      

    • create a new temporary encoder
    • 


    • encode already decoded I-frame
    • 


    • decode encoded I-frame
    • 


    • and then I am able to push referencing encoded P-frames
    • 


    


  • avutil/fifo : Fix thread saftey of av_fifo_generic_peek()

    13 octobre 2015, par Michael Niedermayer
    avutil/fifo : Fix thread saftey of av_fifo_generic_peek()
    

    changing the context state and restoring it is not safe if another
    thread writes data into the fifo

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/fifo.c