Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (50)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (9268)
-
GLIBCXX_3.4.9 not found when running ffmpeg from php in lampp server
14 novembre 2020, par Rafaf TahsinI'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.11not 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.mp4command 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 TahsinI’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.11not 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.mp4command 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 ?