
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (66)
-
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 (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (5548)
-
Why are the red words blurred after opencv and ffmpeg screenshots from a video capture card ? [closed]
28 août 2024, par yaxin xingI tried to take a screenshot after getting the video stream through the video capture card, but the words in red font become blurry after taking the screenshot, but setting the video format to
XRGB
format in OBS makes it clear. How can I solve this problem in python ?

As you can see in the picture, the red letters are much less clear than the other colors
enter image description here


I tried to capture a frame in
ffmpeg
and set-pix_fmt
but it's still blurry, I tried 4:4:4 color modes likenv12
,yuv444
,rgb24
, etc. but it doesn't work.

I also tried passing ffmpeg's video stream to opencv via pipe, but opencv's recombination of its color channels when converting the video stream caused the colors to change, and didn't solve the problem of the red font not being clear either


-
Not getting accurate time stamp from FFMPEG after converting datetime to Unix
13 janvier 2023, par JacobI am creating a video editing application. I have created an ObservableCollection which contains information regarding every frame, 30 per second. I have computed the DateTime per frame as VideoCreationDate + FrameNumber / 29.97. When I display the current time and date with a TextBlock overlaying each frame, the time is perfectly accurate. However, once I convert the date time to Unix time and use it as parameters in the FFMPEG DrawText filter, the time is slightly off. The first few frames are accurate and progressively get worse off the more I scrub through the frames. I am checking the Unix timestamp on each frame and it is correct but for some reason, when I render the FFMPEG command, it converts the timestamp to date time inaccurately.


Below is the method to convert DateTime to Unix :


public long ToUnixTimestamp(DateTime value)
 {
 var dateTimeOffset = new DateTimeOffset(value);
 var unixDateTime = dateTimeOffset.ToUnixTimeSeconds();
 Debug.WriteLine(unixDateTime);
 return unixDateTime;
 }



Below is part of the FFMPEG string containing the DrawText filter :


drawtext=text=\'%{pts\:localtime\:" + ToUnixTimestamp(CurrentFrame.FrameTime) + @"\:'%#I\:%M%p'}\'



I am not sure if I am doing something wrong or if this is a flaw with FFMPEG. Any ideas ?


-
Revision 00d54aa331 : First pass clean up. One of a series of changes to clean up two pass allocation
9 mai 2014, par Paul WilkinsChanged Paths :
Modify /vp9/encoder/vp9_firstpass.c
First pass clean up.One of a series of changes to clean up two pass
allocation as precursor to support for multiple arf
or boosted frames per GF/ARF group.This change pulls out the calculation of the total bits
allocated to a GF/ARF group into a function, to aid
readability and reduce the line count for define_gf_group().This change should have no material impact on output.
Change-Id : I716fba08e26f9ddde3257e7d9b188453791883a3