
Recherche avancée
Autres articles (45)
-
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 (2821)
-
C# capture specific frame from video file using ffmpeg takes too long
6 septembre 2018, par DitzaI am trying to take specific frame from full HD video file. I am using Accord.Video.FFMPEG.
The read ReadVideoFrame takes something like 200ms. I need It to be much faster.
Am I doing something wrong or this is the time it should takes ? What should I use to get the frame in few milliseconds ?VideoFileReader reader = new VideoFileReader();
reader.Open(source);
int frameN = (int)Math.Floor(((reader.FrameRate).ToDouble() * pos.Milliseconds) / 1000);
Bitmap bkg = reader.ReadVideoFrame(frameN);Thanks,
Ditza -
Evolution #3284 (En cours) : changer le vert de l’espace privé par defaut
20 juillet 2015, par b bJ’ouvre de nouveau puisque la modification a été annulée par r22314 et r22314, cf :
http://archives.rezo.net/archives/spip-commit.mbox/E7F52BFKBGVZYK4UAOUUUKDI7S7AF4GE/
-
Is it possible to capture images like time lapse using AFORGE FFMPEG ?
4 juillet 2022, par jom12I am trying to make a time lapse video using AFORGE FFMPEG.


I want to capture a video frame every 10 units.


VideoFileReader reader = new VideoFileReader();
 reader.Open(@"\drive.mp4");
 for (long i = 0; i < reader.FrameCount; i++)
 {
 if (i % 10 == 0)
 {
 Bitmap videoFrame = reader.ReadVideoFrame();
 videoFrame.Save(@"test\img_" + (i / 10).ToString() + ".jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
 }
 }



However, this code only saved 1 frame as an image instead of 10 frames.


Is there a better way to capture images 10 frames at a time ?