Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (112)

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

  • Revision 53d797840e : Split macro strings on whitespace Match any whitespace instead of individual sp

    12 novembre 2013, par Johann

    Changed Paths :
     Modify /build/make/ads2gas_apple.pl



    Split macro strings on whitespace

    Match any whitespace instead of individual spaces. The macro
    definitions in vp9/common/arm/neon/vp9_short_idct32x32_1_add_neon.asm
    triggered this and treated spaces as arguments leading to lines like :
    $8vld1$8.$88$8 $8q8$8, [$$89$8], $$8stride$8

    Change-Id : I2d5718aba4614e4fd7b702e15c2a1bd80e656bd2

  • How can I make a GStreamer pipeline to read individual frames and publish stream ?

    30 janvier 2024, par Alvan Rahimli

    I have an external system which sends individual H264 encoded frames one by one via socket. What I'm trying to do is getting these frames and publishing an RTSP stream to RTSP server that I have.

    


    After getting frames (which is just reading TCP socket in chunks) my current approach is like this :

    


    I read frames, then start a process with following command, and then write every frame to STDIN of the process.

    


    gst-launch-1.0 -e fdsrc fd=0 ! 
                  h264parse ! 
                  avdec_h264 ! 
                  videoconvert ! 
                  videorate ! 
                  video/x-raw,framerate=25/1 ! 
                  avimux ! 
                  filesink location=gsvideo3.avi


    


    I know that it writes stream to AVI file, but this is closest I was able to get to a normal video. And it is probably very inefficient and full of redundant pipeline steps.

    


    I am also open to FFMPEG commands, but GStreamer is preferred as I will be able to embed it to my C# project via bindings and keep stuff in-process.

    


    Any help is appreciated, thanks in advance !

    


  • How do I use fffmpeg save the individual frames of a GIF into PNGs ?

    11 novembre 2020, par adnauseam

    I have a .gif file on my filesystem and I want all of its frames to be saved as .png files. How can I do this with ffmpeg ?