
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (35)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (3178)
-
Serving live video streams with Spring Boot ?
29 octobre 2019, par ankNot sure if my question is correct/clear but basically I need help getting started building http video stream from different ffmpeg output with Spring Boot. I’m trying to build an NVR application. I plan to use ffmpeg to read ip camera streams (over LAN), produce an output and allow users to view these streams (live) through the web application (possible over the internet) or through http built using Spring Boot. I would also want to give users the ability to add more ip camera streams (within the web application) and have the application automatically run ffmpeg to read and write the output then make the live stream available for viewing within the application or through http.
For the ffmpeg commands, I plan to use the ffmpeg-cli-wrapper library. For the live streaming from the application itself or through http, are there any libraries that I can use for this ?
-
FFMPEG Android Compile With libmp3lame
7 juillet 2016, par burakcoskmy os is mac os x
I can compile and use ffmpeg without libmp3lame , and having no problems, I use below command to compile ffmpeg
sudo ./configure
but when I try it with
sudo ./configure —enable-libmp3lame
It returns error ERROR : libmp3lame >= 3.98.3 not found
However, I have libmp3lame installed on my system.
I installed libmp3lame using brew install lame
and linked with brew link lame.
when I look into config.log to see error messages I got this
gcc -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPIC -std=c99 -mdynamic-no-pic -fomit-frame-pointer -fPIC -E -o /tmp/ffconf.V6BXHwIr.o /tmp/ffconf.rMa57AkB.c /tmp/ffconf.rMa57AkB.c:1:10 : fatal error : ’lame/lame.h’ file not found
So it can not find lame/lame.h but I have lame/lame.h inside /usr/local/include ..
I really stucked on this and searched over internet for many hours,
any help would be greatly appreciated thanks
EDIT =====
I made some progress, now I have compiled ffmpeg witch runs without problems in Android, but I still could not combine it with the libmp3lame
-
Call libffmpeg.so through command line on Android
1er décembre 2013, par user3032481I google for this github page : https://github.com/vecio/FFmpeg-Android
And now I had built some latest libffmpeg.so for different versions of arms(ARMv7,vfp,neon,armv6).
But I can't use these in my Android directly.Why I tried to call libffmpeg.so directly instead of jni ?
Because I found a libffmpeg.so from the internet that I can directly use in my project by java.lang.ProcessBuilder and java.lang.Process, and it doesn't need jni at all.
You can get this .so file through this link : http://goo.gl/n0Y1YUI didn't change any configure parameter in the FFmpeg-Android.sh on the github above.
I think that these libffmpeg.so files I compiled can't deal with command line(they are just libraries.).
I don't know how to modify it(Maybe modify the configure parameters).
Does anyone know ?