
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 (96)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (9907)
-
ffmpeg missing frames when generating video from images
5 décembre 2011, par EderI have been trying to generate a video from a set of images using ffmpeg. Everything seems to be working, but when I watch the video I notice that some of the images are missing. I checked the output from ffmpeg, and it seems that it processes all the source images. Has any of you experienced the same problem ? I'm using mp4 format and mpeg4 codec.
Interestingly, if I use avi format, without specifying any codec, I can see those missing images correctly (although the video seems to be jumping from one image to the next quite irregularly). By the way, I have only 14 images, so I set a frame rate of 6. The mp4 video is smooth with these settings, but the avi is quite 'jumpy'.
Thanks in advance.
-
Anomalie #2442 (Fermé) : Insertion de vidéo dans un article
5 décembre 2011, par spip factoryIl est impossible de joindre un document sur un SPIP 3.0.0-beta SVN [18772], si l’on clic sur le bouton Ajouter un document on ouvre le lien http://spipfactory.com/ecrire/?exec=article&id_article=497&ajouter=oui ors celui-ci nous indique Ajouter une image confirmer sur http://grml.eu (...)
-
DirectShow RTSP SourceFilter with MPEG-4 Video Stream
5 octobre 2011, par 6.45.VapuruI create a simple direct show source filter using FFmpeg.I read rtp packets from RTSP source and give them to decoder. It works for h264 stream.
MyRtspSourceFilter[H264 Stream] ---> h264 Decoder --> Video Renderer
The bad news is that it does not work for MPEG-4. I can able to connect my rtsp source filter with MPEG-Decoder. I got no exception but video renderer does not show anything. Actually just show one frame then nothing [just stop]... Decoders and Renderers are 3rd party so i can not debug them.
MyRtspSourceFilter[MP4 Stream] ---> MPEG-4 Decoder --> Video Renderer
I can able to get rtp packets from MPEG-4 RTSP Source using FFmpeg sucessfully.There is no problem with it.
It seems that i have not set something(?) in my Rtsps Source
Filter which is not necessary for H264 stream but may be important for
MPEG-4 streamWhat may cause this h264 stream and MPEG-4 stream difference in a direct show rtsp source filter ? Any ideas.
More Info :
— First i try some other rtsp source filters for MPEG-4 Stream...Although my rtsp source is same i see different subtypes in their pin connections.
— Secondly i realy get suspicious if the source is really MPEG-4 SO i check with FFmpeg...FFmpeg gives the source codec id as "CODEC_ID_MPEG4".
Update :
[ Hack ]I just set m_bmpInfo.biCompression = DWORD('xvid') it just worked fine...But it is static. How to dynamically get/determine this value using ffmpeg or other ways...