
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (74)
-
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. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (14347)
-
Extracting Frames form Video in Android [closed]
2 juillet 2024, par Muhammad BilalI want to extract frames from video and want to change the frames at that point where i extracted the frames.


I have scene apps like Video Status Maker(https://play.google.com/store/apps/details?id=com.krishna.videostatusmaker), Vidify (https://play.google.com/store/apps/details?id=com.beautifullyrical.videomaker). These apps are using template videos. In my view there is a json file behind the video which exactly tells where the frames should be replaced in the video. I checked out the FFmpeg. It is giving me the frames but as i said there must be file which tells where the frames should be replaced. If anyone Knows how this can be done then please guide me. Thanks


-
How to encode video with ffmpeg form videocapture Mat
26 août 2022, par chromizeI'm trying to make video editor tool.


[Environment]
C#
WPF
OpenCVSharp4.5


When encoding video,I have to set some config.(fps/width/height/codec/bitrate/field-order)
But,can't set field-order with opencv's videowriter.


VideoWriter video = new VideoWriter(
 outPutFilePath,
 VideoCaptureAPIs.FFMPEG,
 VideoWriter.FourCC(Char.Parse("M"),
 Char.Parse("P"),
 Char.Parse("4"),
 Char.Parse("V"),
 fps,
 new OpenCvSharp.Size(Width, Height),
 true);
 for (int movePos = StartFrame; movePos < EndFrame; movePos++)
 {
 PosFrames = movePos;
 Mat mat = SetMatFromFrameNo(PosFrames);

 video.Write(mat);
 Cv2.WaitKey(1);
 }



so,I'm trying to use piped ffmpeg.
But I have no idea.


Could you tell how to encode video From VideoCaptures. thanks.


-
arm/aarch64 : Improve scheduling in the avg form of h264_qpel
3 septembre 2021, par Martin Storsjöarm/aarch64 : Improve scheduling in the avg form of h264_qpel
Don't use the loaded registers directly, avoiding stalls on in
order cores. Use vrhadd.u8 with q registers where easily possible.Signed-off-by : Martin Storsjö <martin@martin.st>