
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (53)
-
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 -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...)
Sur d’autres sites (9219)
-
OpenCV : VideoCapture not working with DSHOW backend
12 juin 2017, par nji9I built OpenCV (with mingw 4.9.2 @ Win7Prof64) with
CMake switches for WITH_FFMPEG and WITH_DSHOW turned on.
When I access a movie file withVideoCapture (fileName)
works fine (it uses ffmpeg backend then).But
VideoCapture (fileName, cv::CAP_DSHOW)
doesn’t work
(isOpened()
returns false).What is missing/ what do I do wrong ?
Are there any kind of dshow libs/ dlls needed ? -
FFMPEG Extra just codec information
18 juin 2014, par JimI am planning on using FFMPeg with Java, to detect a specific codec and convert this to another. Using the FFMpeg line -
ffprobe -v quiet -print_format json -show_streams "input.avi"
I can print off all of the stream information of the video, but this includes video information, audio information, all metadata, all tags and other information which I just don’t need.
Question : Is it possible to launch an FFMpeg command which only returns the video codec, so I don’t have to wave through unnecessary information ?
-
How do i convert videos uploaded by user to .swf ?
3 avril 2020, par Anish SilwalI am creating a website which enables to upload videos. But we know that user can upload any kind of video but the browser can't play them. So, I thought that I somehow can convert them into .swf and play them using a flash player. I tried to use ffmpeg-php but it didn't worked. my code was :



shell_exec('ffmpeg -i in.mp4 out.swf');




It does not show any error neither it returns
out.swf
.


Please ! help me.