
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (111)
-
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 (...) -
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 (...)
Sur d’autres sites (7380)
-
How to drawtext colon with pts gmtime using ffmpeg ?
6 décembre 2019, par Milan TejaniI am adding timestamp to video using FFMPEG where i am using below command :
ffmpeg -y -i input.mp4 -vf "drawtext=fontfile=roboto.ttf:fontsize=36:fontcolor=yellow:text='%{pts\:gmtime\:1575526882\:%d/%m/%y %H:%M}'" -preset ultrafast -f mp4 output.mp4
in this command i am using
:
between %H and %M intext
attribute ofdrawtext
text='%{pts\:gmtime\:1575526882\:%d/%m/%y %H:%M}'
because i want to print time like this
06:25
it show me this error :
Unterminated %{} near ’pts:gmtime:1575526882 :%d/%m/%y %H’
how can i print
:
between%H
and%M
where%H
is for hours and%M
is for minutes ? -
ffmpeg : Create cap (video screenshot) at given frame more performant
21 octobre 2016, par phenomeniaI’m trying to find a solution that creates caps (video screenshots) at given framerates and is more performant than my current way :
ffmpeg -i "/path/to/video.mp4" -vf "select=gte(n\,10000)" -vframes 1 "/path/to/cap.png"
I have a zillion videos, each between 10 minutes and 2 hours and I need exactly 6 caps per video. With my current way it takes ages, as ffmpeg is "walking" though the video to find the next frame where it should take the cap. This "walking time" makes almost 99% of job which is currently about 4 minutes per video (depending on its length).
I’m wondering if there’s maybe a way of telling ffmpeg to "jump" right to the given frame. It doesn’t even need to be exact this frame. If theres a keyframe around to make it faster that’s fine.
Anything that can point me in the right direction is very much appreciated !
-
How to implement a command line of ffmpeg with ffmpeg static lib ?
19 novembre 2014, par JackPearseI need a simple ffmpeg conversion task to be done inside an application :
ffmpeg -i input_file.m4v -vcodec copy -acodec copy -vbsf h264_mp4toannexb output_file.ts
This works well using the terminal. I’ve successfully compiled ffmpeg’s static lib. Some examples work perfectly, that means the lib is working. How do I implement the behaviour of the above command line with this library ?
I looked into ffmpeg.c. But there is so much code inside that it took me hours to get an idea on how it works. Finally I still don’t really understand the whole structure.
I would be very happy if someone could help me understanding how to use the library to do the very same what the example command line does. (At the end I just want to transmux mp4 files to ts files without reencoding)
Thanks in advance
Jack