Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (111)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (13709)

  • doc/examples : add fuzz target for individual ffmpeg APIs for in-process fuzzing with...

    28 octobre 2016, par Thomas Garnier
    doc/examples : add fuzz target for individual ffmpeg APIs for in-process fuzzing with libFuzzer, AFL, and similar fuzzing engines.
    

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

    • [DH] doc/examples/decoder_targeted.c
  • 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.

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

    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.

    &#xA;

    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.

    &#xA;

    Any help is appreciated, thanks in advance !

    &#xA;