Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (105)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (12050)

  • lavfi : port mp=fspp to a native libavfilter filter

    23 décembre 2014, par Arwa Arif
    lavfi : port mp=fspp to a native libavfilter filter
    

    Signed-off-by : Stefano Sabatini <stefasab@gmail.com>

    • [DH] LICENSE.md
    • [DH] configure
    • [DH] doc/filters.texi
    • [DH] libavfilter/Makefile
    • [DH] libavfilter/allfilters.c
    • [DH] libavfilter/libmpcodecs/vf_fspp.c
    • [DH] libavfilter/version.h
    • [DH] libavfilter/vf_fspp.c
    • [DH] libavfilter/vf_fspp.h
    • [DH] libavfilter/x86/Makefile
    • [DH] libavfilter/x86/vf_fspp.c
  • x86/vf_fspp : port inline asm to yasm

    26 décembre 2014, par James Almer
    x86/vf_fspp : port inline asm to yasm
    

    Reviewed-by : Michael Niedermayer <michaelni@gmx.at>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/vf_fspp.c
    • [DH] libavfilter/vf_fspp.h
    • [DH] libavfilter/x86/Makefile
    • [DH] libavfilter/x86/vf_fspp.asm
    • [DH] libavfilter/x86/vf_fspp.c
    • [DH] libavfilter/x86/vf_fspp_init.c
  • Recieve audio data from RTP... filtered by port

    11 janvier 2021, par Tech infinity

    I am having some trouble with recieving RTP stream using ffmpeg,

    &#xA;

    This is the SDP I'm using :

    &#xA;

    v=0&#xA;o=- 0 0 IN IP4 127.0.0.1&#xA;s=No Name&#xA;c=IN IP4 40.123.196.251&#xA;t=0 0&#xA;a=tool:libavformat 58.29.100&#xA;m=audio 12222 RTP/AVP 0&#xA;b=AS:64&#xA;a=rtpmap:0 PCMU/8000/1&#xA;

    &#xA;

    This is the ffmpeg command I'm using to write it to a wav file.

    &#xA;

    sudo ffmpeg -loglevel debug -protocol_whitelist file,crypto,udp,rtp -i test.sdp -c copy test.wav -y&#xA;

    &#xA;

    Getting the file properly... But I need to filter it based on the source port... as these are different phone calls...

    &#xA;

    Pls help