
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (57)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (7806)
-
How to create an RTSP server to stream from webcam ?
24 février 2021, par Dhananjay ChobheI want to create an RTSP streaming server using my integrated webcam and later on using the same stream server to click pictures using java code. I did some research and there are several options available such as FFmpeg, wowza, etc but I don't know how to use them properly. I am using windows OS. I want the streaming server to be localhost. And i can use this link to actually take pictures in java.


-
Fixed #194 - Required as attribute fails if jQuery>=1.6 - Use .prop instead of .attr
20 septembre 2011, par Christian Kollerm changelog.txt m jquery.validate.js m test/index.html m test/rules.js Fixed #194 - Required as attribute fails if jQuery>=1.6 - Use .prop instead of .attr Plus whitespace cleanup for test/index.html and test/rules.js
-
Converting imges to video
19 janvier 2014, par DanMI am using external camera with my application. The camera takes 9 pictures every second (9fps). The pictures are bitmaps 384x288. I need to create from this pictures a video file.
What I have tried :
- Using Jcodec
The problem : jcodec is relatively slow, and for it to work properly i add the bitmaps to ArrayList and when the record stopped i convert the array to video. I takes to much time. For 30 sec video there is about 1 min rendering time.
- Using native mediaCodec
The problem : I could only generate AVI files (video/avc) that not readable in the original android player. I can not use what is written here : http://bigflake.com/mediacodec/ because I developing for API 16. I have tried using (video/mp4v-es) but the video is corrupted and not playable in any player.
- Using FFmpeg
The problem : Very complicated to implement in android, and I am not sure it will give me the result I needed after spending time to implement this. The result I need is to record video streaming as I get the bitmap without any delay.
What can you suggest me ?