
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 (98)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
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 ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (9943)
-
how to add beat and bass effect in video using ffmpeg command ?
8 avril 2021, par Hit_Vari want beat effect on video and i am using ffmpeg command for beat effect i was used this below command for beat effect black and white and original color after 2 sec looping but not this work this command only create black and white video ffmpeg -i addition.mp4 -vf hue=s=0 output.mp4


So please, suggest any solution.


I want make video like youtube.com/watch ?v=7fG7TVKGcqI plaese suggest me


Thanks in advance


-
ffmpeg drawtext same font size and position on all kind of videos
25 janvier 2018, par Bilal AkmalI’m drawing text and an icon on input video which user uploads. I’m able to draw the test and icon both successfully using two separate ffmpeg filter -vf and -filter_complex. But the problem is the output is not consistent for different size and resolution of videos. I mean I need to place the text and icon in top left corner with some padding, but it’s totally different positioned and sized on each video.
So can you help me how I can calculate the font based on video height and width to make it consistent, I mean the text box should be of same size irrespective of video dimensions.Here’s the commands I’m using :
ffmpeg -i input.mp4 -vf "drawtext=fontfile=OpenSans-Regular.ttf:text=\’LIVE\’:fontcolor=white:fontsize=40:x=50:y=50:box=1:boxcolor=red@0.9:boxborderw=20,format=yuv420p, drawtext=fontfile=OpenSans-Regular.ttf:text=’\ %eif :$1+t:d’:fontcolor=white:fontsize=40:x=195:y=50:box=1:boxcolor=black@0.4:boxborderw=20,format=yuv420p" -c:v libx264 -c:a copy -movflags +faststart output1.mp4 -y
ffmpeg -i input.mp4 -vf "drawtext=fontfile=OpenSans-Regular.ttf:text=\’LIVE\’:fontcolor=white:fontsize=40:x=50:y=50:box=1:boxcolor=red@0.9:boxborderw=20,format=yuv420p, drawtext=fontfile=OpenSans-Regular.ttf:text=’\ %eif :$1+t:d’:fontcolor=white:fontsize=40:x=195:y=50:box=1:boxcolor=black@0.4:boxborderw=20,format=yuv420p" -c:v libx264 -c:a copy -movflags +faststart output1.mp4 -y
ffmpeg -i output1.mp4 -i eye.png -filter_complex "[1]lut=a=val*1[a] ;[0][a]overlay=190:48" -pix_fmt yuv420p -c:a copy output2.mp4 -y ; -
ffmpeg smooth scroll in smooth loop [closed]
22 décembre 2024, par Igor ScherbickijI need help creating code for
ffmpeg
. I have a picture with dimensionsx000*1080
(the length will be more than 1920, but it depends on the picture). I want to scroll it endlessly and seamlessly (the picture repeats)

i write this code, who work but have freezes

ffmpeg -loop 1 -i sr_innernet.png -vf "scroll=horizontal=0.0004,crop=1920:1080:0:0,format=yuv420p" -r 120 -t 10 output.mp4


After this i googled other method, who can make it smoothly. but this method no works with looping(image scrolled once)


ffmpeg -r 1 -loop 1 -t 61 -i sr_innernet.png -filter_complex "color=white:s=1920x1080, fps=fps=60[bg];[bg][0]overlay=x='-t*120':shortest=1[video]" -preset ultrafast -map [video] output.mp4



I tried to combine these two methods. I also asked the AI, but all the answers did not suit me. Using if else in the code causes the image to jump when it reaches a certain limit. some combinations scrolled the image seamlessly, but the height of the displayed part was several times less than 1080.


i need have videostream who

- scroll image in loop

- have smooth(use white background with frequency 60 fps)

AI recommended freaky recommendation with if else statements, or other variants with overlay, but all them dont suit me. thats or have end of picture(i see white screen after scroll picture) or just jumping image