
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (83)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (11851)
-
FFMpeg Logo Different Sepration [closed]
9 mai 2024, par unkpSimple :


1.Want a logo to be only for specific times on a video,


motivation : reduce length of the process if possible.


the code used for logo is this one :


ffmpeg -i output0.mp4 -vf "movie=logo.png [watermark] ; [watermark]scale=220x220 [watermark2] ;[in][watermark2] overlay=main_w-overlay_w-10:main_h-overlay_h-10 [out]" output0logo0done.mp4



Would Want like something like this if possible : keep the logo for 1 minute then 4 minutes later keep the logo again for 1 minute.



Tried searching about this request, the answers found were related to ->


split the parts like 1,2,3,4,5 only add the logo to odd parts ->


combine them after, this may be too troublesome


-
FFMpeg Logo Different Sepration [Beginner]
9 mai 2024, par unkpSimple :


1.Want a logo to be only for specific times on a video,


motivation : reduce length of the process if possible.


the code used for logo is this one :


ffmpeg -i output0.mp4 -vf "movie=logo.png [watermark] ; [watermark]scale=220x220 [watermark2] ;[in][watermark2] overlay=main_w-overlay_w-10:main_h-overlay_h-10 [out]" output0logo0done.mp4



Would Want like something like this if possible : keep the logo for 1 minute then 4 minutes later keep the logo again for 1 minute.



Tried searching about this request, the answers found were related to ->


split the parts like 1,2,3,4,5 only add the logo to odd parts ->


combine them after, this may be too troublesome


-
How to divide a duration in half
30 août 2019, par Kelly FletI’m trying to find the midpoint of a video, in other words divide the total length by
2
.ffmpeg
gives time in formatHOURS:MM:SS.MICROSECONDS
, so ignoring microseconds, how could I get the half way point ? I’ve tried dividing each number (hours/minutes/seconds
) by2
but this fails in the case of0:01:00
, for example.