
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (112)
-
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 -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (7202)
-
Revision 51612 : - Ajout d’une noisette pour le badge Facebook - Passage en utf8 du fichier ...
19 septembre 2011, par yffic@… — LogAjout d’une noisette pour le badge Facebook
Passage en utf8 du fichier de langue fr
-
Anomalie #3305 (Nouveau) : Balise fermée automatiquement dans un bloc code
21 octobre 2014, par Franck DalotBonjour
Je viens de me rendre compte d’un bug sur contrib (le bug est également présent sous SPIP 3.0.18-dev [21616]) mais semble absent sous spip 3.1
Quand une personne répond dans le forum en entourant par "code"<necessite version="[2.0.0;2.1.99]"></necessite>
La prévisalisation est ok, par contre après avoir valider le message, cela écris :<necessite version="[2.0.0;2.1.99]"></necessite>
Cordialement, Franck -
Recording video in C#
31 juillet 2014, par pfedotovskyI have to do the following : record video from camera using C#. Camera I use produces video frames (framerate is not fixed) and I have to somehow put all the frames together and create video file. Also I need to use different codecs such as AVI or MPEG4 (these codecs are required, others are optional).
The main problem I faced is how to create video in which framerate is not fixed. I have a stream of frames, for example I can recive the first frame after 1ms, then after 20ms, then 36ms and so on. If I create video with 25 frames/second the result will be wrong because it means that frames are added after 40ms.
I tried to use Aforge.Video library, it has a method http://www.aforgenet.com/framework/docs/html/84a560df-bfd5-e0d6-2812-f810b56a254d.htm which adds a frame according to timespan. But this method has problems with setting bitrate - the bitrate value I pass to the method simply ignored (http://www.aforgenet.com/forum/viewtopic.php?f=2&t=2665).
So my questions is : is there some C# library which I can use to video recording ? I have to support AVI and MPEG4, also possibility to set bitrate and the last but not the least - record video with variable framerate.
Thanks in advance. Any suggestions would be very helpful.
UPD1 : I can’t connect to camera directly - all I have is a stream of frames and I need to convert this stream to video at run-time.
UPD2 : A library I’m looking for should satisfy the following properties. It has to contain a method (or some way how to do the same) to add next frame with a timestamp just like in Aforge.Video.FFMPEG :
public void WriteVideoFrame(Bitmap frame, TimeSpan timestamp)
And it should be possible to choose different codecs (at least AVI and MPEG4) and also to set bitrate.
Is there some alternatives to Aforge.Video.FFMPEG ? Because Aforge doesn’t work properly - the bitrate value is ignored, also some codecs are not supported (MPEG2 for example).UPD3 : One more questions about codec license. If I use open source library, should I worry about the codec license ?