
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (56)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (8395)
-
ffmpeg output images filename with time position and problem with 'not(mod(t'
26 novembre 2020, par Дмитрий МышковI'd found a such ffmpeg output images filename with time position topic, but have problem with execute that one "ffmpeg -i source -vf fps=1,select='not(mod(t,5))' -vsync 0 -frame_pts 1 z%d.jpg" :


ffmpeg -i ex.avi -vf fps=1,select='not(mod(t,5))' -vsync 0 -frame_pts 1 z%d.jpg

Stream mapping:
 Stream #0:0 -> #0:0 (mpeg4 (native) -> mjpeg (native))
Press [q] to stop, [?] for help
[Parsed_select_1 @ 0x7f96ee6024c0] [Eval @ 0x7ffee72d67d0] Missing ')' or too many args in 'mod(t'
[Parsed_select_1 @ 0x7f96ee6024c0] Error while parsing expression 'not(mod(t'
[AVFilterGraph @ 0x7f96ee439cc0] Error initializing filter 'select' with args 'not(mod(t'
Error reinitializing filters!
Failed to inject frame into filter network: Invalid argument
Error while processing the decoded data for stream #0:0
Conversion failed!



what do I not right ?


-
Adding overlay image to video on specific position ffmpeg
10 juillet 2019, par Niraj PathakI want to add one or multiple resized images anywhere over the video using ffmpeg. It works well for some position. However, it does not add images to the exact position I want. I have tested it on console and its embedded in php with dynamic variables.
ffmpeg -y -i vid_1561454052.mp4 -i Penguins.jpg -filter_complex
"[0:v][1:v] overlay=221:127:enable=’between(t,0,5)’" -pix_fmt yuv420p
-aspect 16:9 -c:a copy vid_1562740969.mp4Please Help me out...
-
Shifting overlay position every x seconds
11 novembre 2019, par David TranCurrently, I add a watermark to the bottom right of my video to prevent others from republishing it. However, they blur the watermark so I’m thinking of adding a moving watermark that changes its position every x seconds.
Below is my current ffmpeg command :
ffmpeg -i input.mp4 -i logo.png -filter_complex "[1][0]scale2ref=iw/4:ow*90/272[wm][vid];[vid][wm]overlay=W-w-W*10/100:H-h-H*5/100" -preset veryfast output.mp4
How can I make the watermark position from the bottom right to top right, to top left, and bottom left every 30 seconds ? Thank you.