Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (107)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • 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 ;

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (28133)

  • 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;