
Recherche avancée
Autres articles (101)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
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 (...)
Sur d’autres sites (8893)
-
How can I install ffmpeg in python
1er février 2017, par ismail yussufI’m having a problem with downloading ffmpeg for python. It seems to me that no matter what I do it just doesn’t work.
Btw ,sorry for the images but I still don’t know how to post my command prompt on here. So here is the error i’m getting.
https://i.stack.imgur.com/ynHtM.png
I’ve already tried "pip install ffmpeg-normalize" and when I do that I get this
https://i.stack.imgur.com/sFpmn.png
FYI I already downloaded imageio and that went totally fine. I even have the ffmpeg.py file in imageio. I also saw a suggestion to use "imageio.plugins.ffmpeg.download()", that didn’t help either.
Does anyone know how I can install it properly ?
Thanks
-
Java Process Builder runs ffmpeg commands very slowly
16 septembre 2022, par MaryI'm trying to run
ffmpeg
in Java usingProcessBuilder
. I'm on Windows. It works fine. But not sure why it's much slower than when I just run the same command in command prompt or PowerShell.

Why is it ? Is there any ways to increase the speed ?


processBuilder.command("C:\\Windows\\System32\\cmd.exe", "/c","ffmpeg.exe", "-y", "-i", video,"-vf","scale=720:-1","out.mp4");
 processBuilder.redirectErrorStream(true);
 try {
 process = processBuilder.start();
 BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
 
 String line="";
 while ((line = reader.readLine()) != null) {
 System.out.println(line);
 }
 } catch (Exception e) {
 System.err.println("Error in processBuilder. ");
 }



-
Raspberry Pi cannot connect to IP camera, while Windows PC can ?
28 novembre 2020, par gf000I have an IP camera (Provision ISR, DI-320IPS-VF, 2MP IR Vari-Focal Dome IP Camera). When I connect it to my router (it is a 10 or 12 years old TP-LINK TL-WR1043ND), it will immediately show up in "IP Manager" (this is a program by the manufacturer) on my Windows PC. If I double click on the camera's row, Internet Explorer opens up, and everything is working fine. On the same Windows PC, if I open VLC Media Player, and paste this URL : rtsp ://username:password@localipaddress:554/profile1
It works fine.


I have also a "Raspberry Pi 4 model B 4 GB RAM", which is connected to the same router. If I open VLC Media Player, and I paste the same URL, it doesn't work. I also created an ffmpeg one-liner, which would take a photo, but that is also not working.


My final goal would be to be able to take photos with that ffmpeg one-liner, on the Raspberry Pi.


Maybe the Raspberry Pi is not powerful enough to handle the stream ? Or, could it be the problem that the IP-camera is sending H-264 / H-265 video stream, and the Raspberry Pi cannot handle it ?


Thank you for your help. Any idea could help me.