
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (73)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (...)
Sur d’autres sites (6919)
-
Evolution #3892 : Différence de tri entre {id_patate IN ...} et {id_patate ?}
25 janvier 2017, par b bÉvolution alors ;)
-
Using FFMPEG and Open CV and encoding webcam stream to h264 in VC 2010
22 novembre 2013, par OsaidI am trying to capture video stream and at the same time willing to encode it to h264 and save it to a file. I am using OpenCV to capture stream but am having problem converting them to h264 via FFMPEG. OS is WINDOWS XP and VC 2010 is the environment.
I referred the encoding_decoding (refer video encoding section) provided by the FFMPEG. FFMPEG uses AVFrame i.e.
AVFrame *frame;
structure in which there is image data at frame->data but in OpenCV I am capturing frames in
Mat WebCamFrame;
cap >> WebCamFrame; //Captures frame from webcam and puts it to WebCamFrameFor encoding I have to get this captured WebCamFrame to frame->data then encode it using the
avcodec_encode_video2(c, &pkt, frame, &got_output);
in the encoding_decoding example a dummy image is created as
/* prepare a dummy image */
/* Y */
for(y=0;yheight;y++)
{
for(x=0;xwidth;x++)
{
frame->data[0][y * frame->linesize[0] + x] = x + y + i * 3;
}
}
/* Cb and Cr */
for(y=0;yheight/2;y++)
{
for(x=0;xwidth/2;x++)
{
frame->data[1][y * frame->linesize[1] + x] = 128 + y + i * 2;
frame->data[2][y * frame->linesize[2] + x] = 64 + x + i * 5;
}
}I do not want to use this dummy image rather the frame captured from webcam to encode it to h264. One more thing, the data type of WebCamFrame is MAT and that of frame is AVFrame. I would really appreciate a hint to proceed further. In a nutshell I want to process Mat frames (webCam video Stream) of OpenCV in FFMPEG avcodec_encode_video2() and write the video to a file.
-
Evolution #3892 : Différence de tri entre {id_patate IN ...} et {id_patate ?}
26 janvier 2017, par marcimat ☺☮☯♫Je pense que le compilateur ne peut pas deviner lorsqu’on écrit
{truc?}
à la compilation qu’il doit ajouter le Field. Alors qu’avec le mot clé IN il le sait directement (cfcritere_IN_dist()
).
Pour ignorer, tu peux tenter{id_patate ?IN #ENV{id_patate}}
(tant que tu gardes le même nom pour id_patate et le#ENV
).