
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (73)
-
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (7686)
-
Record region of screen using FFMPEG ? [closed]
13 février 2024, par pookieI am looking to record a defined area of the screen at as high FPS as possible. I then need to extract the milliseconds for each frame.



I was looking at FFMPEG and found that it has (or had...) an option called
x11grab
, so I tried the following to record a region of the screen :


ffmpeg -f x11grab -s 1678x1050 -i :0.0+7,53 -r 25




It doesn't work : I get an error
Unknown input format: 'x11grab'



I tried with
xcbgrab
too, but I get the same error ofUnknown input format...



I have seen this SO post, but I am using Windows 10, and it did not help me.



Google tells me that this argument is now deprecated. I cannot find an examples of how to record just a part of the screen.



I want to take a partial screenshot because I need as high a FPS as possible and my assumption is that taking a partial capture will be faster than taking a full screen capture. Is that correct ? If not, of course I could take a full screen capture and the crop out region of interest... and if that is the case, does anyone know how to do that ?


-
avfilter/scale_vulkan : add dynamic crop region and aspect ratio match
26 novembre 2024, par Koushik Duttaavfilter/scale_vulkan : add dynamic crop region and aspect ratio match
The scale_vulkan filter initializes the shader once, with the crop
region set by the original frame. However, subsequent frames may
specify a different crop region than the first frame. This change
updates the cropping to match the behavior present on the other
hardware frame scale filters.The scale filter should also allow negative values
that respect aspect ratio, similar to other scale filters.Signed-off-by : Koushik Dutta <koushd@gmail.com>
-
ffmpeg get the audio stream from mp4 and send it to speech recognition
12 juillet 2013, par user1896859I have few .mp4 video files in which at the start of each video file there is a word, I want to load these files get the audio check what is the spoken word and rename the file accordingly.
Currently what i am doing is, converting all the mp4 files to wav and then sending the to speech recognition and then doing the renaming stuff.
Is there a way to cut short the "converting to wav" part out and directly send the mp4 audio stream to speech recognition ??
Thanks,