Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (21)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (5681)

  • How to http stream video from a frequently updated image

    27 avril 2017, par alez

    How can I obtain an HTTP video stream from a single image file that is frequently updated (every 50ms) ?

    The file is on a Windows 7 machine, I can use C# but I can also send a potential stream to a linux machine.

    I would try whith vlc and the fake module, but it seems not more supported. I’ve tried also with a pipe from ffmpeg (also over an udp localhost stream) but it doesn’t work.

  • FFmpeg Capture remote screen

    29 août 2018, par ricardo

    I am trying capture a remote screen via ffmpeg and x11grab, I run in my machine this command

    xpra start-desktop :20 --start-child=fluxbox

    this machine have the ip 192.168.1.15

    and in the remote capture I try run this

    /usr/local/bin/ffmpeg -f pulse -server 192.168.1.15 -i tarjeta01.monitor -f x11grab -framerate 25 -r 25 -i 192.168.1.15:20.0 -fflags nobuffer -f rtp -c:v h264_nvenc -preset llhp -profile:v baseline -level 4 -delay 0 -b:v 1500k -threads 4 -cbr 1 -r 25 -an udp://:5008 -f rtp -vn -c:a libopus -ar 48000 -ac 2 -ab 96k -application lowdelay -compression_level 0 -frame_duration 2.5 -cutoff 20000 -vbr constrained udp://localhost:5006

    I make xhost + and xhost + 192.168.1.16 in the machine where run xpra but always receive this error

    [x11grab @ 0x23e4ea0] Cannot open display 192.168.1.15:20, error 1.
    192.168.1.15:20: Input/output error

    I try xpra, Xephyr and xfvb but always get the same error

    Thanks for all best regards

  • How to load correct libavcodec.so shared library version ? (53)

    6 août 2017, par user2212461

    I am using libavcodec and libavformat in my project but when I execute a binary which was built on another machine, I get the following error :

    error while loading shared libraries: libavcodec.so.53: cannot open shared object file: No such file or directory

    I installed ffmpeg with libav and trying the following commands :

    sudo apt-get install ffmpeg libavcodec-dev libavformat-dev
    sudo apt-get install ffmpeg libavcodec-extra-53
    sudo apt-get install libav-tools

    The error doesnt show up when I build the binary on the same machine, but it would be much faster to compile on a second machine.

    UDPATE : I also ran sudo apt-get install update and sudo apt-get install pkg-config without any change in the output. (OS = 12.04)