
Recherche avancée
Autres articles (61)
-
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 (6512)
-
ffmpeg with opengl_es on Android
21 juin 2012, par ksharpThis is driving me crazy. I do know how to make ffmpeg decode videos&make opengl show contents on Android .But I can never make them together. FFmpeg keeps decoding frames while OpenGL has its own circle.How to make them co-work/sync ? Well,I mean OpenGL can show every frame right after decoded by ffmpeg ? Can I just call the decode methods in OpenGL onDrawFrame() method(by jni) ?What about the audiotrack then ?
Thx ! -
ffmpeg add text every second with enable between filter
12 janvier 2023, par HUNGffmpeg -y -i public/media/vid1.mp4 -vf "drawtext=text='1':x=w-tw-50:y=50:fontcolor=black:fontsize=380:enable='between(t,1,2)',drawtext=text='2':x=w-tw-50:y=50:fontcolor=black:fontsize=380:enable='between(t,0,1)'" -codec:a copy public/media/vid1-1.mp4



I want to add a number every second in a video. I googled and the syntax should like the above. However, only the text within
between(t,0,1)
can be shown and the value is keeping shown for the whole video duration. But I expected it should only show one second.

I expected
between(t,1,2)
can show the text from 00:00:01-00:00:02. However, it never show.

-
Use ffmpeg to cut out the first chapter
7 janvier 2017, par UnR34LI’m trying to remove the first chapter of a TV show rip. The idea is to have something similar to netflix, where the first episode will show the intro then the consecutive episodes don’t.
I’ve been getting the chapter time with ffprobe then doing it manually with this
for %%A IN (*.mp4) DO ffmpeg -ss <chaptertime> -i "%%A" -vcodec copy -acodec copy "tmp.mp4" && DEL "%%A" && RENAME "tmp.mp4" "%%A"
</chaptertime>How do I pass the first chapter time code value so ffmepg knows where to seek to ?
Also hoping to use the same the same value to offset the subtitles so they align after the cut.
Note : The machine I’ve doing the cutting on is windows but I can use my FreeBSD server if that’s easier.