Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (20)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5105)

  • GLIBCXX_3.4.9 not found when running ffmpeg from php in lampp server

    14 novembre 2020, par Rafaf Tahsin

    I've written a php program which creates a video from sequence of images using ffmpeg.

    



    <?php
    $res = shell_exec("ffmpeg -framerate 50 -i image/image%d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4 2>&1");
    echo "$res";


    


    When I run it,

    


    it says GLIBCXX_3.4.15 , GLIBCXX_3.4.9 , GLIBCXX_3.4.11 not found.

    


    


    ffmpeg : /opt/lampp/lib/libstdc++.so.6 : version `GLIBCXX_3.4.15' not

    


    found (required by /usr/lib/i386-linux-gnu/libjack.so.0) ffmpeg :

    


    /opt/lampp/lib/libstdc++.so.6 : version `GLIBCXX_3.4.9' not found

    


    (required by /usr/lib/i386-linux-gnu/libzmq.so.3) ffmpeg :

    


    /opt/lampp/lib/libstdc++.so.6 : version `GLIBCXX_3.4.11' not found

    


    (required by /usr/lib/i386-linux-gnu/libopencv_core.so.2.4) ffmpeg :

    


    /opt/lampp/lib/libstdc++.so.6 : version `GLIBCXX_3.4.9' not found

    


    (required by /usr/lib/i386-linux-gnu/libopencv_core.so.2.4)

    


    


    But from the terminal, ffmpeg -framerate 50 -i image/image%d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4 command works fine. Why php can't find the libraries while from the terminal it works fine ? and what should I do to fix the problem in php ? Thanks in advance.

    


  • GLIBCXX_3.4.9 not found when running ffmpeg from php in lampp server

    13 mai 2016, par Rafaf Tahsin

    I’ve written a php program which creates a video from sequence of images using ffmpeg.

    <?php
       $res = shell_exec("ffmpeg -framerate 50 -i image/image%d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4 2>&1");
       echo "$res";

    When I run it,

    it says GLIBCXX_3.4.15 , GLIBCXX_3.4.9 , GLIBCXX_3.4.11 not found.

    ffmpeg : /opt/lampp/lib/libstdc++.so.6 : version `GLIBCXX_3.4.15’ not

    found (required by /usr/lib/i386-linux-gnu/libjack.so.0) ffmpeg :

    /opt/lampp/lib/libstdc++.so.6 : version `GLIBCXX_3.4.9’ not found

    (required by /usr/lib/i386-linux-gnu/libzmq.so.3) ffmpeg :

    /opt/lampp/lib/libstdc++.so.6 : version `GLIBCXX_3.4.11’ not found

    (required by /usr/lib/i386-linux-gnu/libopencv_core.so.2.4) ffmpeg :

    /opt/lampp/lib/libstdc++.so.6 : version `GLIBCXX_3.4.9’ not found

    (required by /usr/lib/i386-linux-gnu/libopencv_core.so.2.4)

    But from the terminal, ffmpeg -framerate 50 -i image/image%d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4 command works fine. Why php can’t find the libraries while from the terminal it works fine ? and what should I do to fix the problem in php ? Thanks in advance.

  • How to share video stream to WSL2 while ffmpeg ? [closed]

    27 octobre 2024, par 笑先生

    Most solutions for using a camera in WSL are to build your own WSL kernel. I have realized it with the steps mentioned in Capturing webcam video with OpenCV in WSL2

    


    However, it's complicated and time-consuming. I want to realize it by sharing video streaming.

    


    Share method

    


    Step1 : Run the command below on Windows to check all the camera devices. I see an integrated camera "Integrated Webcam" (video) in the output.

    


    ffmpeg -list_devices true -f dshow -i dummy


    


    Step2 : Check the IP of Ethernet adapter vEthernet (WSL). In my computer, it's 172.24.176.1

    


    Step3 : Run the command below on Windows to share video streaming.

    


    ffmpeg -f dshow -i video="Integrated Webcam" -preset ultrafast -tune zerolatency -vcodec libx264 -f mpegts udp://172.24.176.1:5000


    


    Test

    


    Run the command to play the video streaming : ffplay udp://172.24.176.1:5000

    


    It can show the video when the command is run with a terminal of Windows (Win10).

    


    But, it cannot show anything when the command is run on with a terminal of WSL (Ubuntu 22.04). Why ?