
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (111)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (6473)
-
vaapi_h264 : Fix bit offset of slice data.
2 avril 2016, par Mark Thompsonvaapi_h264 : Fix bit offset of slice data.
Commit ca2f19b9cc37be509d85f05c8f902860475905f8 modified the meaning of
H264SliceContext.gb : it is now initialised at the start of the NAL unit
header, rather than at the start of the slice header. The VAAPI slice
decoder uses the offset after parsing to determine the offset of the
slice data in the bitstream, so with the changed meaning we no longer
need to add the extra byte to account for the NAL unit header because
it is now included directly.Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
lavc : preserve the original private data in avcodec_copy_context()
5 avril 2014, par Anton Khirnov -
Add Meta-Data to OpenCV VideoWriter as it records
29 avril 2016, par Kells1986I have some simple code that records video at 3 frames per second using
openCV 2.4
. The code is running on a Raspberry Pi, which is going to be powered by a battery for about 5 minutes before it will die.Because the Raspberry Pi dies the video recording does not terminate gracefully, and it seems that the meta-data isn’t written to the file properly.
mplayer
is capable of playing the file back, but what I would like to do is post-process the video in some existing software. In order to be able to do that the software needs to extract the number of frames in the video from the meta-data, which it cannot do at present.Is there anyway of forcing
openCV
to write the meta-data as it records ? Or can I getmplayer
/ffmpeg
to fill in the gaps later ?Here is the code that records the video :
VideoCapture cap(0); // open the default camera
cap.set(CV_CAP_PROP_FPS, fps);
cap.set(CV_CAP_PROP_FRAME_WIDTH, 1280);
cap.set(CV_CAP_PROP_FRAME_HEIGHT, 720);
if(!cap.isOpened()) // check if we succeeded
return -1;
Mat testFrame;
cap >> testFrame;
cap >> testFrame;
cap >> testFrame;
Size outSize = Size(testFrame.cols, testFrame.rows);
VideoWriter writer(filename, CV_FOURCC('M','J','P','G'), fps, outSize, true);
int count = 0;
for(; ;)
{
Mat frame;
cap >> frame; // get a new frame from camera
writer.write(frame);
}