Recherche avancée

Médias (91)

Autres articles (53)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5275)

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

    


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

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